calathea/Cargo.toml

20 lines
659 B
TOML

[package]
name = "calathea"
version = "0.1.0"
edition = "2021"
[dependencies]
axum = { version = "0.7.9", features = ["macros"] }
chrono = { version = "0.4.39", features = ["serde"] }
r2d2 = "0.8.10"
r2d2_sqlite = "0.25.0"
# this dependency is needed soly because the r2d2_sqlite crate doesn't export
# the 'chrono' feature flag
rusqlite = { version = "0.32.1", features = ["chrono"] }
serde = { version = "1.0.217", features = ["derive"] }
tera = "1.20.0"
tokio = { version = "1.42.0", features = ["full"] }
tower-http = { version = "0.6.2", features = ["compression-br", "compression-gzip", "set-header"] }
tracing = "0.1.41"
tracing-subscriber = "0.3.19"