website/Cargo.toml
Joey Hines 33a6056445 Updated website to use axum
+ Its better than warp and rocket so far...
+ Also switched to 2021 Rust
+ Needs more refactoring but I wanted to get it to a "working" state
+ clippy + fmt
2022-12-26 17:17:40 -06:00

25 lines
651 B
TOML

[package]
name = "jsite"
version = "0.1.0"
authors = ["Joey Hines <joey@ahines.net>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = {version = "1", features = ["derive"]}
serde_json = "1"
regex = "1"
tokio = { version = "1", features = ["full"] }
axum = "0.6.1"
tera = "1.17.1"
tower = { version = "0.4", features = ["util", "timeout", "load-shed", "limit"] }
tower-http = { version = "0.3.0", features = [
"add-extension",
"compression-full",
"limit",
"trace",
] }
tower-layer = "0.3.2"
axum-extra = { version = "0.4.2", features = ["spa"]}