mongod/Cargo.toml

16 lines
398 B
TOML
Raw Normal View History

2024-07-17 07:40:59 +00:00
[package]
name = "mongod"
2024-07-24 13:44:37 +00:00
version = "0.2.0"
2024-07-17 07:40:59 +00:00
edition = "2021"
[dependencies]
chrono = "0.4.38"
futures = "0.3.30"
mongodb = "2.8.0"
regex = "1.10.5"
serde = { version = "1.0.195", features = ["derive"] }
serde_json = "1.0.111"
2024-07-22 14:22:11 +00:00
tokio = { version = "1.35.1", features = ["sync"], default-features = false }
2024-07-17 07:40:59 +00:00
uuid = { version = "1.8.0", features = ["v4"] }
2024-07-22 14:22:11 +00:00
mongod_derive = { path = "./mongod_derive" }