summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: e56a0781e80403a44c31cbbc57c368aea0ebdb07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[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"