kttd/Cargo.toml
Andrey Tkachenko 261577bfc7 Initial State
2023-05-12 11:12:46 +04:00

16 lines
602 B
TOML

[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"] }
tokio = { version = "1.28.0", features = ["parking_lot", "macros", "rt", "rt-multi-thread"] }