stationslauf/Cargo.toml
Philipp Hofer dc07f8fb89
Some checks failed
CI/CD Pipeline / test (push) Failing after 2m15s
CI/CD Pipeline / deploy (push) Has been skipped
first draft of auth
2025-04-12 09:27:59 +02:00

26 lines
646 B
TOML

[package]
name = "stationslauf"
version = "0.1.0"
edition = "2024"
[dependencies]
axum = "0.8"
axum-login = "0.17"
chrono = { version = "0.4", features = ["serde"]}
dotenv = "0.15"
maud = { version = "0.27", features = ["axum"] }
serde = "1.0"
sqlx = { version = "0.8", features = ["sqlite", "runtime-tokio-rustls", "macros", "chrono"] }
tokio = { version = "1.44", features = ["macros", "rt-multi-thread"] }
tower-sessions = "0.14"
tracing = "0.1"
rust-i18n = "3"
thiserror = "2.0"
async-trait = "0.1"
password-auth = "1.0"
tower-sessions-sqlx-store-chrono = { version = "0.14", features = ["sqlite"] }
[dev-dependencies]
axum-test = "17.3"