-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
24 lines (22 loc) · 918 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
[package]
name = "calories"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
axum = "0.6.20"
serde = { version = "1.0.192", features = ["derive"] }
serde_json = "1.0.108"
tokio = { version = "1", features = ["full"] }
tracing = { version = "0.1.40", features = ["log"] }
tracing-subscriber = "0.3.18"
utoipa = { version = "4.1.0", features = ["axum_extras"] }
utoipa-swagger-ui = { version = "4.0.0", features = ["axum"] }
utoipa-redoc = { version = "1.0.0", features = ["axum"] }
utoipa-rapidoc = { version = "1.0.0", features = ["axum"] }
reqwest = {version = "0.11", features = ["json"]}
rxing = { version = "0.5.0", features = ["image", "serde"] }
mongodb = { version = "2.8.0", features = ["tokio-runtime"] }
futures = { version = "0.3.28" }
chrono = { version = "0.4.31", features = ["serde"] }
dotenv = "0.15.0"