17 lines
428 B
TOML
17 lines
428 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", features = ["json"] }
|
|
|
|
# templating
|
|
serde = { version = "1", features = ["derive"] }
|
|
tera = "1"
|