-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
36 lines (28 loc) · 1.22 KB
/
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
[package]
name = "wechat"
version = "1.5.2"
edition = "2021"
publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "miniprogram-api"
path = "src/bin/miniprogram-api.rs"
[dependencies]
config = { version = "~0.14.0", default-features = false, features = ["toml", "json", "json5"] }
chrono = { version = "~0.4.22", features = ["serde"] }
serde = { version = "~1.0.130", features = ["derive"] }
serde_json = { version = "~1.0.71" }
tracing = { version = "~0.1.37" }
tracing-subscriber = { version = "~0.3.16", default-features = false, features = ["registry"] }
tracing-appender = { version = "~0.2.3" }
tokio = { version = "~1.38.0", features = ["full"] }
axum = { version = "~0.7.1", features = ["macros"] }
tower = { version = "~0.4.12" }
tower-http = { version = "~0.5.0", features = ["cors", "request-id", "trace"] }
sqlx = { version = "~0.7.4", features = [ "runtime-tokio", "tls-native-tls", "postgres", "chrono" ] }
reqwest = { version = "~0.12.2" }
totp-rs = { version = "~5.5.0", features = ["otpauth"] }
fasthash = { version = "~0.4.0" }
base62 = { version = "~2.0.2" }
url = { version = "~2.5.0" }
rs-snowflake = { version = "~0.6.0", default-features = false }