[package] name = "witch_watch" version = "0.0.1" edition = "2021" [dependencies] axum = { version = "0.6", features = ["macros", "headers"] } askama = { version = "0.12", features = ["with-axum"] } askama_axum = "0.3" axum-macros = "0.3" tokio = { version = "1", features = ["full", "tracing"], default-features = false } tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter"] } tower = { version = "0.4", features = ["util", "timeout"], default-features = false } tower-http = { version = "0.4", features = ["add-extension", "trace"] } uuid = { version = "1", features = ["serde", "v4"] } serde = { version = "1", features = ["derive"] } sqlx = { version = "0.6", default-features = false, features = ["runtime-tokio-rustls", "any", "sqlite", "chrono", "time", "uuid"] } argon2 = "0.5" rand_core = { version = "0.6", features = ["getrandom"] } thiserror = "1" justerror = "1" password-hash = { version = "0.5", features = ["std", "getrandom"] } axum-login = { version = "0.5", features = ["sqlite", "sqlx"] } unicode-segmentation = "1" urlencoding = "2" async-session = "3" [dev-dependencies] axum-test = "9.0.0"