33 lines
901 B
TOML
33 lines
901 B
TOML
[package]
|
|
name = "achubb_website"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
askama = "0.12.1"
|
|
axum = "0.6"
|
|
bb8 = "0.8.3"
|
|
chrono = { version = "0.4.38", features = ["alloc", "serde"] }
|
|
clap = { version = "4.5.13", features = ["derive"] }
|
|
cookie = "0.18.1"
|
|
dotenv = "0.15.0"
|
|
futures-util = "0.3.30"
|
|
pbkdf2 = { version = "0.12.2", features = ["simple"] }
|
|
rand = "0.8.5"
|
|
rand_chacha = "0.3.1"
|
|
rand_core = "0.6.4"
|
|
serde = { version = "1.0.197", features = ["derive"] }
|
|
sqlx = { version = "0.7.4", features = [
|
|
"chrono",
|
|
"macros",
|
|
"postgres",
|
|
"runtime-tokio-rustls",
|
|
] }
|
|
tokio = { version = "1.35.0", features = ["full"] }
|
|
tower = "0.4.13"
|
|
tower-http = { version = "0.4.4", features = ["fs"] }
|
|
tracing = "0.1.40"
|
|
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
|