calathea/Cargo.toml

32 lines
1016 B
TOML
Raw Normal View History

2024-12-28 09:36:13 +00:00
[package]
name = "calathea"
version = "0.1.0"
edition = "2021"
2025-01-10 12:22:33 +00:00
[[bin]]
path = "src/main.rs"
name = "calathea"
2024-12-28 09:36:13 +00:00
[dependencies]
argon2 = "0.5.3"
axum = { version = "0.8.0", features = ["macros"] }
2025-01-11 16:35:20 +00:00
axum-extra = { version = "0.10.0", features = ["cookie"] }
2025-01-07 18:07:23 +00:00
chrono = { version = "0.4.39", features = ["serde"] }
2025-01-12 08:50:46 +00:00
clap = { version = "4.5.26", features = ["derive", "env"] }
2025-01-16 12:01:27 +00:00
diesel = { version = "2.2.6", features = ["sqlite", "returning_clauses_for_sqlite_3_35", "r2d2", "chrono"] }
2024-12-28 09:36:13 +00:00
r2d2 = "0.8.10"
r2d2_sqlite = "0.25.0"
rand = "0.8.5"
2025-01-07 18:07:23 +00:00
# this dependency is needed soly because the r2d2_sqlite crate doesn't export
# the 'chrono' feature flag
2025-01-10 12:22:33 +00:00
rusqlite = { version = "0.32.1", features = ["chrono", "bundled"] }
2024-12-28 10:44:56 +00:00
serde = { version = "1.0.217", features = ["derive"] }
tera = "1.20.0"
2024-12-28 09:36:13 +00:00
tokio = { version = "1.42.0", features = ["full"] }
2025-01-10 14:45:46 +00:00
tower-http = { version = "0.6.2", features = ["compression-br", "compression-gzip", "set-header", "fs"] }
2024-12-28 10:44:56 +00:00
tracing = "0.1.41"
tracing-subscriber = "0.3.19"
2025-01-12 08:50:46 +00:00
[profile.release]
strip = true