cdb/Cargo.toml

21 lines
542 B
TOML
Raw Normal View History

2024-01-14 02:57:13 +00:00
[package]
name = "cdb"
version = "0.1.0"
edition = "2021"
[dependencies]
2024-04-29 11:37:36 +00:00
chrono = "0.4.38"
2024-01-16 08:02:23 +00:00
futures = "0.3.30"
2024-01-14 02:57:13 +00:00
log = "0.4.20"
2024-06-21 19:14:45 +00:00
mdq = { git = "https://git.hydrar.de/mdtools/mdq" }
2024-01-14 02:57:13 +00:00
mongodb = "2.8.0"
2024-06-21 19:14:45 +00:00
rocket = { version = "0.5.1", features = ["json"] }
rocket_cors = "0.6.0"
2024-01-14 02:57:13 +00:00
serde = { version = "1.0.195", features = ["derive"] }
serde_json = "1.0.111"
2024-05-06 06:24:23 +00:00
serde_yaml = "0.9.34"
2024-01-14 02:57:13 +00:00
tokio = { version = "1.35.1", features = ["full"] }
toml = "0.8.8"
2024-04-29 11:11:27 +00:00
uuid = { version = "1.8.0", features = ["v4"] }
2024-07-24 14:38:56 +00:00
mongod = { git = "https://git.hydrar.de/jmarya/mongod" }