bucket/Cargo.toml

18 lines
468 B
TOML

[package]
name = "webring"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# web
tokio = { version = "1", features = ["full"] }
tower-http = { version = "0.4.1", features = ["fs"] }
axum = "0.6.12"
reqwest = { version = "0.11.18", default-features = false, features = ["json", "rustls-tls"] }
# templating
serde = { version = "1", features = ["derive"] }
tera = "1"