bucket/Cargo.toml

18 lines
468 B
TOML
Raw Permalink Normal View History

2023-07-09 03:30:33 +00:00
[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"
2023-07-09 03:47:26 +00:00
reqwest = { version = "0.11.18", default-features = false, features = ["json", "rustls-tls"] }
2023-07-09 03:30:33 +00:00
# templating
serde = { version = "1", features = ["derive"] }
tera = "1"