blessed-rs/Cargo.toml

24 lines
545 B
TOML
Raw Normal View History

2022-03-13 18:58:19 +00:00
[package]
name = "blessed-rs"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2022-11-08 12:58:06 +00:00
axum = "0.5"
fxhash = "0.2"
once_cell = "1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tera = "1"
tokio = { version = "1", features = ["full"] }
tower-http = { version = "0.3", features = ["fs", "trace"] }
tracing = "0.1"
2022-03-13 18:58:19 +00:00
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
2022-11-09 12:59:46 +00:00
[build-dependencies]
rsass = "0.26"
[features]