kttd/Cargo.toml

17 lines
624 B
TOML
Raw Normal View History

2023-05-12 11:12:46 +04:00
[package]
name = "kttd"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
axum = { version = "0.6.18", features = ["tracing", "http2"] }
chrono = { version = "0.4.24", features = ["serde"] }
ctxerr = "0.2.5"
diesel = { version = "2.0.4", features = ["chrono"] }
diesel-async = { version = "0.2.2", features = ["postgres", "tokio-postgres", "deadpool"] }
serde = { version = "1.0.163", features = ["derive"] }
2023-05-12 11:32:56 +04:00
serde_json = "1.0.96"
2023-05-12 11:12:46 +04:00
tokio = { version = "1.28.0", features = ["parking_lot", "macros", "rt", "rt-multi-thread"] }