-
Notifications
You must be signed in to change notification settings - Fork 16
/
Cargo.toml
42 lines (40 loc) · 1.21 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
37
38
39
40
41
42
[workspace]
resolver = "2"
members = ["server", "database"]
[workspace.dependencies]
ctrlc = "3.4.2"
serde = { version = "1.0.197", features = ["derive"] }
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
once_cell = "1.19.0"
garde = { version = "0.18.0", features = ["derive", "email", "regex"] }
anyhow = "1.0.79"
serde_json = "1.0.113"
strum = { version = "0.26.1", features = ["derive"] }
dotenvy = "0.15.7"
ts-rs = { version = "6.2.1", features = ["serde-compat", "chrono-impl"] }
uuid7 = { version = "0.7.2" }
rand = "0.8.5"
log = "0.4.20"
jsonwebtoken = "9.2.0"
pwhash = "1.0.0"
futures = "0.3.30"
axum = { version = "0.7.5", features = ["ws", "macros"] }
tower = { version = "0.4.13", features = [
"util",
"timeout",
"load-shed",
"limit",
] }
tower-http = { version = "0.5.2", features = ["cors", "trace"] }
reqwest = {version = "0.11.24", features = ["json"]}
tokio = { version = "1.35.1", features = ["full"] }
async-trait = "0.1.77"
# If you're updating sqlx, make sure that chrono version below is the same as the one in sqlx
sqlx = { version = "0.7.3", features = [
"runtime-tokio",
"tls-rustls",
"macros",
"postgres",
"chrono",
] }
chrono = { version = "0.4.22", features = ["serde"] }