-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
26 lines (24 loc) · 877 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[package]
name = "reque"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
futures = "0.3.27"
#sea-orm = { version = "^0.9.0", features = [ "sqlx-mysql", "runtime-async-std-native-tls", "macros" ] }
sqlx = { version = "0.6.3", features = [ "runtime-tokio-rustls", "mysql", "chrono", "macros", "migrate", "uuid", "json" ] }
rocket = { version = "0.5.0-rc.2", features = ["json", "secrets"] }
config = {version = "0.13.1", features = ["json5"] }
async-trait = "0.1.66"
anyhow = "1.0.0"
serde = { version = "1.0.152", features = ["derive"]}
serde_json = "1.0.95"
serde_with = "2.3.1"
simple-log = "1.5.1"
serde_derive = "1.0.159"
toml = "0.7.3"
chrono = "0.4.24"
jwt-simple = "0.11.5"
log = "0.4.19"
log4rs = { version = "1.2.0", features = ["file_appender"] }
reqwest = "0.11.22"