-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
26 lines (23 loc) · 897 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
[package]
name = "axum-local-library"
version = "0.1.0"
edition = "2021"
default-run = "axum-local-library"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
axum = "0.5"
tokio = { version = "1.0", features = ["full"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tower = { version = "0.4", features = ["util", "timeout"] }
tower-http = { version = "0.3", features = ["trace", "cors"] }
dotenv = "0.15"
mongodb = { version = "2", features = [] }
serde = { version = "1.0", features = ["derive"] }
# serde_json = "1.0"
chrono = { version = "0.4", features = ["serde"] }
bson = { version = "2", features = ["chrono-0_4", "serde_with"] }
futures = "0.3"
# https://github.com/mongodb/bson-rust/issues/303#issuecomment-1198026738
serde_with = { version = "1.14", features = [] }
# futures = "0.3"