[package] name = "what2watch" version = "0.0.1" edition = "2021" default-run = "what2watch" [dependencies] # local proc macro optional_optional_user = {path = "optional_optional_user"} # regular external deps argon2 = "0.5" askama = { version = "0.12", features = ["with-axum"] } askama_axum = "0.3" async-session = "3" axum = { version = "0.6", features = ["macros", "headers"] } axum-login = { git = "https://github.com/nebkor/axum-login", branch = "sqlx-0.7", features = ["sqlite"], default-features = false } axum-macros = "0.3" chrono = { version = "0.4", default-features = false, features = ["std", "clock"] } clap = { version = "4", features = ["derive", "env", "unicode", "suggestions", "usage"] } justerror = "1" password-hash = { version = "0.5", features = ["std", "getrandom"] } rand = "0.8" serde = { version = "1", features = ["derive"] } sqlx = { version = "0.7", default-features = false, features = ["runtime-tokio-rustls", "sqlite", "chrono", "time"] } thiserror = "1" tokio = { version = "1", features = ["full", "tracing"], default-features = false } tokio-retry = "0.3" tokio-stream = "0.1" tower = { version = "0.4", features = ["util", "timeout"], default-features = false } tower-http = { version = "0.4", features = ["add-extension", "trace"] } tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter"] } ulid = { version = "1", features = ["rand"] } unicode-segmentation = "1" rand_distr = "0.4" [dev-dependencies] axum-test = "9" serde_test = "1"