what2watch/Cargo.toml

25 lines
967 B
TOML
Raw Normal View History

2022-04-10 06:00:33 +00:00
[package]
2023-04-26 05:19:49 +00:00
name = "witch_watch"
version = "0.0.1"
2022-04-10 06:00:33 +00:00
edition = "2021"
[dependencies]
2023-04-26 05:19:49 +00:00
axum = { version = "0.6", features = ["macros", "tracing"] }
askama = { version = "0.12", features = ["with-axum"] }
askama_axum = "0.3"
axum-macros = "0.3"
2022-04-10 06:00:33 +00:00
tokio = { version = "1", features = ["full"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tower = { version = "0.4", features = ["util", "timeout"] }
2023-04-26 05:19:49 +00:00
tower-http = { version = "0.4", features = ["add-extension", "trace"] }
uuid = { version = "1.3", features = ["serde", "v4"] }
2022-04-10 06:00:33 +00:00
serde = { version = "1", features = ["derive"] }
2023-05-12 19:08:18 +00:00
sqlx = { version = "0.5.10", features = ["runtime-tokio-rustls", "any", "sqlite", "chrono", "time", "uuid"] }
argon2 = "0.5"
rand_core = { version = "0.6", features = ["getrandom"] }
thiserror = "1.0.40"
justerror = "1.1.0"
password-hash = { version = "0.5.0", features = ["std", "getrandom"] }
2023-05-12 19:44:13 +00:00
axum-login = { version = "0.5.0", features = ["sqlite", "sqlx"] }