cdb/Cargo.toml

23 lines
633 B
TOML
Raw Normal View History

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