-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (34 loc) · 1.15 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 = "open-edc"
version = "0.1.0"
authors = [
"Paul Sanders <[email protected]>",
]
edition = "2021"
license = "MIT"
[dependencies]
anyhow = "1.0.86"
argon2 = { version = "0.5.3", features = ["std"] }
axum = "0.7.5"
bb8 = "0.8.5"
bb8-redis = "0.15.0"
chrono = { version = "0.4.38", features = ["serde"] }
clap = { version = "4.5.15", features = ["derive"] }
dotenvy = "0.15.7"
redis = { version = "0.25.4", features = ["tokio-comp"] }
serde = { version = "1.0.207", features = ["derive"] }
serde_json = "1.0.124"
sqlx = { version = "0.8.0", features = ["runtime-tokio", "postgres", "chrono"] }
thiserror = "1.0.63"
tokio = { version = "1.39.2", features = ["full"] }
tower-http = { version = "0.5.2", features = ["trace"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
utoipa = { version = "4.2.3", features = ["axum_extras", "chrono"] }
utoipa-swagger-ui = { version = "7.1.0", features = ["axum"] }
uuid = { version = "1.10.0", features = ["v4"] }
[dev-dependencies]
http-body-util = "0.1.2"
mime = "0.3.17"
tower = { version = "0.4.13", features = ["util"] }
uuid = { version = "1.10.0", features = ["v4"] }