forked from africinnovate/health-bridge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (24 loc) · 939 Bytes
/
Cargo.toml
File metadata and controls
25 lines (24 loc) · 939 Bytes
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
[package]
name = "emr-api"
version = "0.1.0"
edition = "2024"
[dependencies]
tokio = { version = "1.48.0", features = ["full"] }
reqwest = { version = "0.12", features = ["json", "gzip", "rustls-tls"] }
axum = "0.8.6"
serde = { version = "1.0.228", features = ["derive"] }
serde_yaml = "0.9.34"
serde_json = "1.0.145"
uuid = { version = "1.1.18", features = ["v4", "serde"] }
argon2 = { version = "0.5", features = ["std"] }
jsonwebtoken = { version = "10", features = ["aws_lc_rs"] }
diesel = { version = "2.3.3", features = ["postgres", "r2d2", "uuid", "chrono"] }
tracing = "0.1.41"
tracing-subscriber = "0.3.20"
anyhow = "1.0"
dotenvy = "0.15.7"
chrono = { version = "0.4.42", features = ["serde"] }
bigdecimal = { version = "0.4", features = ["serde"] }
utoipa = { version = "5.4.0", features = ["macros", "axum_extras", "chrono", "uuid", "decimal"] }
utoipa-swagger-ui = { version = "9", features = ["axum"] }
tower-cookies = "0.5"