Files
axum/examples/static-file-server/Cargo.toml
T

14 lines
403 B
TOML
Raw Normal View History

[package]
name = "example-static-file-server"
version = "0.1.0"
edition = "2021"
publish = false
[dependencies]
axum = { path = "../../axum" }
2022-05-08 21:52:34 +02:00
axum-extra = { path = "../../axum-extra", features = ["spa"] }
tokio = { version = "1.0", features = ["full"] }
2022-06-10 08:59:17 +02:00
tower-http = { version = "0.3.0", features = ["fs", "trace"] }
tracing = "0.1"
2022-03-06 12:37:00 +01:00
tracing-subscriber = { version = "0.3", features = ["env-filter"] }