-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
31 lines (28 loc) · 921 Bytes
/
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
[package]
name = "printer-supplies-api"
version = "0.1.0"
edition = "2021"
[workspace]
members = ["libs/config", "libs/infra"]
[dependencies]
infra = { path = "libs/infra" }
config = { path = "libs/config" }
axum = "0.7.5"
thiserror = "1.0.65"
tracing = "0.1.40"
serde_json = "1.0.125"
sqlx = { version = "0.8.1", features = [
"chrono",
"postgres",
"runtime-tokio-native-tls",
"rust_decimal",
"uuid",
] }
tokio = { version = "1.39.2", features = ["full"] }
chrono = { version = "0.4.38", features = ["serde"] }
serde = { version = "1.0.208", features = ["derive"] }
uuid = { version = "1.10.0", features = ["serde", "v4"] }
validator = { version = "0.18.1", features = ["derive"] }
utoipa-swagger-ui = { version = "8.0.3", features = ["axum"] }
utoipa = { version = "5.1.3", features = ["chrono", "decimal", "uuid"] }
rust_decimal = { version = "1.36.0", features = ["serde", "serde-with-float"] }