-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (31 loc) · 1.24 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
[package]
name = "inventory-service"
version = "0.1.0"
edition = "2021"
[dependencies]
async-trait = "0.1"
axum = { version = "0.7", features = ["json", "macros"] }
axum-extra = { version = "0.9", features = ["typed-header"] }
bigdecimal = { version = "0.4", features = ["serde"] }
axum-macros = "0.4"
chrono = { version = "0.4", features = ["serde"] }
dotenv = "0.15"
futures = "0.3.30"
garde = { version = "0.20.0", features = ["full"] }
jsonwebtoken = "9.3.0"
mockall = "0.13"
once_cell = "1.19.0"
reqwest = { version = "0.12.7", features = ["json", "multipart"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sqlx = { version = "0.8", features = ["bigdecimal", "macros", "postgres", "chrono", "uuid", "runtime-tokio-rustls"] }
tokio = { version = "1", features = ["full"] }
tower = { version = "0.5", features = ["full"] }
tower-http = { version = "0.5", features = ["trace", "cors"] }
tower-service = "0.3"
tracing = "0.1.26"
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "fmt", "json"] }
uuid = { version = "1.6.1", features = ["serde", "v4"] }
utoipa = { version = "5.0.0-alpha.2", features = ["axum_extras", "chrono", "uuid"] }
utoipa-redoc = { version = "4.0.1-alpha.0", features = ["axum"] }
rand = "0.8.5"