-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
42 lines (35 loc) · 974 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[package]
name = "api"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
r2d2 = "0.8.10"
r2d2_redis = "0.14.0"
log = "0.4.22"
common_lib = { path = "../common_lib" }
chrono = "0.4.38"
config = "0.14.1"
log4rs = "1.0"
tokio = { version = "1.41.0", features = ["full"] }
quick-js = "0.4.1"
serde_json = "1.0.132"
serde = { version = "1.0.213", features = ["derive"] }
lapin = { version = "2.5.0", features = ["default"] }
futures-lite = "2.3.0"
futures-util = "0.3.31"
cron = "0.12.1"
chrono-tz = "0.10.0"
influxdb2-structmap = "0.2"
bson = "2.3"
http = "1.1.0"
rocket = { version = "0.5.1", features = ["json"] }
mongodb = { version = "3.1" }
mysql = "25.0.1"
r2d2_mysql = "25.0.0"
regex = "1.11.1"
sqlx = { version = "0.8.2", features = ["mysql", "chrono", "runtime-tokio-native-tls"] }
serde_with = "3.11.0"
async-trait = "0.1.83"
anyhow = "1.0.92"
jsonwebtoken = "8.1"