achubb_website/Cargo.toml

32 lines
883 B
TOML
Raw Normal View History

2023-12-14 20:50:31 -05:00
[package]
2024-08-07 21:24:10 -04:00
name = "achubb_website"
2023-12-14 20:50:31 -05:00
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2023-12-16 17:58:58 -05:00
askama = "0.12.1"
axum = "0.6"
bb8 = "0.8.3"
2024-12-19 07:32:10 -05:00
chrono = { version = "0.4.38", features = ["alloc", "serde"] }
clap = { version = "4.5.13", features = ["derive"] }
2024-12-18 07:26:21 -05:00
cookie = "0.18.1"
futures-util = "0.3.30"
2024-12-18 07:26:21 -05:00
pbkdf2 = { version = "0.12.2", features = ["simple"] }
rand = "0.8.5"
2024-12-18 07:26:21 -05:00
rand_chacha = "0.3.1"
rand_core = "0.6.4"
2024-04-28 11:02:16 -04:00
serde = { version = "1.0.197", features = ["derive"] }
2024-12-18 07:26:21 -05:00
sqlx = { version = "0.7.4", features = [
2024-12-19 07:32:10 -05:00
"chrono",
2024-12-18 07:26:21 -05:00
"macros",
2024-12-19 07:32:10 -05:00
"postgres",
"runtime-tokio-rustls",
2024-12-18 07:26:21 -05:00
] }
2023-12-16 17:58:58 -05:00
tokio = { version = "1.35.0", features = ["full"] }
tower = "0.4.13"
tower-http = { version = "0.4.4", features = ["fs"] }
2023-12-16 17:58:58 -05:00
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }