what2watch/Cargo.toml

45 lines
1.6 KiB
TOML
Raw Normal View History

2022-04-10 06:00:33 +00:00
[package]
2023-07-09 04:21:12 +00:00
name = "what2watch"
2023-04-26 05:19:49 +00:00
version = "0.0.1"
2022-04-10 06:00:33 +00:00
edition = "2021"
2023-07-09 04:21:12 +00:00
default-run = "what2watch"
2022-04-10 06:00:33 +00:00
[dependencies]
# local proc macro
optional_optional_user = {path = "optional_optional_user"}
# regular external deps
argon2 = "0.5"
2023-04-26 05:19:49 +00:00
askama = { version = "0.12", features = ["with-axum"] }
2023-12-10 21:52:27 +00:00
askama_axum = "0.4"
2024-01-30 06:14:42 +00:00
async-trait = "0.1"
2023-12-10 21:52:27 +00:00
axum = { version = "0.7", features = ["macros"] }
axum-login = "0.11"
2023-12-10 21:52:27 +00:00
axum-macros = "0.4"
chrono = { version = "0.4", default-features = false, features = ["std", "clock"] }
clap = { version = "4", features = ["derive", "env", "unicode", "suggestions", "usage"] }
2024-01-30 06:14:42 +00:00
figment = { version = "0.10", default-features = false, features = ["toml", "env"] }
2023-12-18 00:41:04 +00:00
http = "1.0.0"
2023-07-28 23:15:27 +00:00
julid-rs = "1"
justerror = "1"
2024-01-30 06:14:42 +00:00
parse_duration = "2.1.1"
2023-12-25 00:21:55 +00:00
password-auth = "1"
password-hash = { version = "0.5", features = ["std", "getrandom"] }
rand = "0.8"
2022-04-10 06:00:33 +00:00
serde = { version = "1", features = ["derive"] }
2023-12-10 21:52:27 +00:00
sha256 = { version = "1.4.0", default-features = false }
sqlx = { version = "0.7", default-features = false, features = ["runtime-tokio", "sqlite", "tls-none", "migrate"] }
2023-05-29 00:06:09 +00:00
thiserror = "1"
tokio = { version = "1", features = ["full", "tracing"], default-features = false }
tower = { version = "0.4", features = ["util", "timeout"], default-features = false }
2023-12-18 00:41:04 +00:00
tower-http = { version = "0.5", features = ["add-extension", "trace", "tracing", "fs"], default-features = false }
tower-sessions = { version = "0.8", default-features = false, features = ["sqlite-store"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
unicode-segmentation = "1"
2023-06-13 19:34:54 +00:00
[dev-dependencies]
2023-12-18 00:41:04 +00:00
axum-test = "14"
2024-01-07 00:53:49 +00:00