cdb/Cargo.toml

23 lines
720 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-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" }
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-08-28 20:03:39 +00:00
env_logger = "0.11.5"
2024-09-02 16:40:02 +00:00
walkdir = "2.5.0"
2024-09-27 07:19:32 +00:00
reqwest = { version = "0.11", features = ["json"] }
2024-10-07 18:53:58 +00:00
chrono = { version = "0.4.38", features = ["serde"] }
uuid = { version = "1.8.0", features = ["v4", "serde"] }
sqlx = { version = "0.8", features = ["postgres", "runtime-tokio-native-tls", "derive", "uuid", "chrono", "json"] }