sarmentine/Cargo.toml
Butter 8d4042e31a
Some checks failed
CI / Check (push) Failing after 20s
CI / Build & Push Docker Image (push) Has been skipped
CI / Deploy to Rocky (push) Has been skipped
added email auth and posting
really coming together now.
2026-05-04 17:20:07 -04:00

28 lines
909 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"
governor = "0.6"
rand = "0.8"
lettre = { version = "0.11", default-features = false, features = ["tokio1-rustls-tls", "smtp-transport", "builder"] }
base64 = "0.22"
pulldown-cmark = "0.13"
ammonia = "4.1"