31 lines
1.1 KiB
TOML
31 lines
1.1 KiB
TOML
[package]
|
|
name = "locality"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
argon2 = { version = "0.5", features = ["password-hash", "std"] }
|
|
askama = "0.12"
|
|
askama_axum = "0.4"
|
|
axum = { version = "0.7", default_features = false, features = ["http1", "form", "tokio"] }
|
|
axum-extra = { version = "0.9", features = ["cookie"] }
|
|
base64 = "0.21"
|
|
chrono = { version = "0.4.34", features = ["serde"] }
|
|
deadpool-postgres = { version = "0.12", features = ["rt_tokio_1"] }
|
|
digest = "0.10"
|
|
hmac = "0.12"
|
|
http = "1.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
sha2 = "0.10"
|
|
tokio = { version = "1", features = ["rt-multi-thread"]}
|
|
tokio-postgres = { version = "0.7", features = ["with-chrono-0_4"] }
|
|
tower = { version = "0.4", features = ["util"] }
|
|
tower-http = { version = "0.5", features = ["fs", "trace"] }
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", default_features = false, features = ["std", "fmt", "ansi"] }
|
|
|
|
[dev-dependencies]
|
|
scraper = "0.18" |