18 lines
685 B
TOML
18 lines
685 B
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]
|
|
tokio = { version = "1", features = ["rt-multi-thread"]}
|
|
axum = { version = "0.7", default_features = false, features = ["http1", "form", "tokio"] }
|
|
askama = "0.12"
|
|
askama_axum = "0.4"
|
|
tower-http = { version = "0.5", features = ["fs"] }
|
|
deadpool-postgres = { version = "0.12", features = ["rt_tokio_1"] }
|
|
tokio-postgres = { version = "0.7", features = ["with-chrono-0_4"] }
|
|
thiserror = "1.0"
|
|
argon2 = { version = "0.5", features = ["password-hash", "std"] }
|
|
serde = { version = "1.0", features = ["derive"] } |