kttd/Cargo.toml
Andrey Tkachenko 9fd1025d4a
All checks were successful
continuous-integration/drone/push Build is passing
schema update; error handling
2023-05-12 13:07:05 +04:00

20 lines
680 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"] }
axum-sessions = "0.5.0"
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"] }
rand = "0.8.5"
serde = { version = "1.0.163", features = ["derive"] }
serde_json = "1.0.96"
sha256 = "1.1.3"
tokio = { version = "1.28.0", features = ["parking_lot", "macros", "rt", "rt-multi-thread"] }