what2watch/Cargo.toml

36 lines
1.3 KiB
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-05-25 00:08:40 +00:00
axum = { version = "0.6", features = ["macros", "headers"] }
2023-04-26 05:19:49 +00:00
askama = { version = "0.12", features = ["with-axum"] }
askama_axum = "0.3"
axum-macros = "0.3"
2023-05-25 00:08:40 +00:00
tokio = { version = "1", features = ["full", "tracing"], default-features = false }
2022-04-10 06:00:33 +00:00
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
2023-05-25 00:08:40 +00:00
tower = { version = "0.4", features = ["util", "timeout"], default-features = false }
2023-04-26 05:19:49 +00:00
tower-http = { version = "0.4", features = ["add-extension", "trace"] }
2022-04-10 06:00:33 +00:00
serde = { version = "1", features = ["derive"] }
sqlx = { version = "0.6", default-features = false, features = ["runtime-tokio-rustls", "any", "sqlite", "chrono", "time"] }
2023-05-12 19:08:18 +00:00
argon2 = "0.5"
rand_core = { version = "0.6", features = ["getrandom"] }
2023-05-29 00:06:09 +00:00
thiserror = "1"
justerror = "1"
password-hash = { version = "0.5", features = ["std", "getrandom"] }
axum-login = { version = "0.5", features = ["sqlite", "sqlx"] }
unicode-segmentation = "1"
async-session = "3"
2023-06-29 23:27:21 +00:00
ulid = { version = "1", features = ["rand"] }
2023-05-25 00:08:40 +00:00
2023-06-13 19:34:54 +00:00
# proc macros:
optional_optional_user = {path = "optional_optional_user"}
2023-06-29 23:27:21 +00:00
chrono = { version = "0.4", default-features = false, features = ["std", "clock"] }
2023-06-13 19:34:54 +00:00
[dev-dependencies]
axum-test = "9.0.0"
serde_test = "1.0.164"