From 115a47b191cd3c3d1e76319b569cb9941d0376f6 Mon Sep 17 00:00:00 2001 From: David Pedersen Date: Wed, 8 Jun 2022 09:58:56 +0200 Subject: [PATCH] Remove tower's `buffer` feature (#1071) Turns out we're not using it anymore and it saves depending on tokio-util. --- axum/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/axum/Cargo.toml b/axum/Cargo.toml index e575543d..4c75dd85 100644 --- a/axum/Cargo.toml +++ b/axum/Cargo.toml @@ -41,7 +41,7 @@ pin-project-lite = "0.2.7" serde = "1.0" sync_wrapper = "0.1.1" tokio = { version = "1", features = ["time"] } -tower = { version = "0.4.11", default-features = false, features = ["util", "buffer", "make"] } +tower = { version = "0.4.11", default-features = false, features = ["util", "make"] } tower-http = { version = "0.3.0", features = ["util", "map-response-body"] } tower-layer = "0.3" tower-service = "0.3"