]> piware.de Git - learn-rust.git/blob - axum-server/Cargo.toml
concepts: rustfmt
[learn-rust.git] / axum-server / Cargo.toml
1 [package]
2 name = "axum-server"
3 version = "0.1.0"
4 edition = "2021"
5
6 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
7
8 [dependencies]
9 axum = { version = "0.5", features = ["ws", "headers"] }
10 hyper = { version = "0.14" }
11 tokio = { version = "1", features = ["full"] }
12 tower = "0.4"
13 tower-http = { version = "0.3", features = ["trace", "fs"] }
14 tracing = "0.1"
15 tracing-subscriber = "0.3"