X-Git-Url: https://piware.de/gitweb/?a=blobdiff_plain;f=axum-server%2FCargo.toml;h=9033d1864fd0b125e1cfc6d79e9fea2b7224a0c4;hb=f5c4a6a87fc589dec2f23bee0196beb07d427ae7;hp=206a653f505fbf558bf997340c66922a4479cff0;hpb=d154738629ef14b2141a01aac34a7b39c263eed1;p=learn-rust.git diff --git a/axum-server/Cargo.toml b/axum-server/Cargo.toml index 206a653..9033d18 100644 --- a/axum-server/Cargo.toml +++ b/axum-server/Cargo.toml @@ -6,9 +6,10 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -axum = "0.5" +axum = { version = "0.5", features = ["ws", "headers"] } +hyper = { version = "0.14" } tokio = { version = "1", features = ["full"] } tower = "0.4" -tower-http = { version = "0.3", features = ["trace"] } +tower-http = { version = "0.3", features = ["trace", "fs"] } tracing = "0.1" tracing-subscriber = "0.3"