-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
22 lines (20 loc) · 852 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[package]
name = "htmx-blog"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.79"
axum = { version = "0.7.4", features = ["macros"] }
axum-htmx = "0.5.0"
axum-login = "0.13.1"
clap = { version = "4.4.18", features = ["env", "derive"] }
dotenvy = { version = "0.15.7", features = ["clap"] }
maud = { version = "0.26.0", features = ["axum"] }
password-auth = "1.0.0"
serde = { version = "1.0.195", features = ["derive"] }
sqlx = { version = "0.7.3", features = ["postgres", "runtime-tokio", "uuid"] }
tokio = { version = "1.35.1", features = ["full"] }
tower-http = { version = "0.5.1", features = ["fs"] }
tower-sessions-sqlx-store = { version = "0.10.0", features = ["postgres"] }
uuid = { version = "1.7.0", features = ["v4", "serde"] }