mirror of
https://github.com/tokio-rs/axum.git
synced 2024-11-26 09:08:05 +01:00
db22b7309d
Co-authored-by: David Pedersen <david.pdrsn@gmail.com>
14 lines
432 B
TOML
14 lines
432 B
TOML
[package]
|
|
name = "example-static-file-server"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
axum = { path = "../../axum" }
|
|
axum-extra = { path = "../../axum-extra" }
|
|
tokio = { version = "1.0", features = ["full"] }
|
|
tower = { version = "0.4", features = ["util"] }
|
|
tower-http = { version = "0.4.0", features = ["fs", "trace"] }
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|