sarmentine/Cargo.toml
Butter 5d64a3137a add auth, FLCL reference
but I don't like sour drinks
2026-04-20 09:37:09 -04:00

22 lines
703 B
TOML

[package]
name = "sarmentine"
version = "0.1.0"
edition = "2024"
[dependencies]
axum = "0.7"
tokio = { version = "1", features = ["full"] }
askama = { version = "0.12", features = ["with-axum"] }
askama_axum = "0.4"
tower-http = { version = "0.5", features = ["fs"] }
sqlx = { version = "0.7", features = ["runtime-tokio","chrono", "sqlite", "migrate"] }
dotenvy = "0.15"
argon2 = "0.5"
rand_core = { version = "0.6", features = ["std"] }
tower-sessions = { version = "0.12", features = ["signed"] }
tower-sessions-sqlx-store = { version = "0.12", features = ["sqlite"] }
serde = { version = "1", features = ["derive"] }
chrono = { version = "0.4", features = ["serde"] }
# Error handling
anyhow = "1"