From ba95dd022a4e98340cf2673b9e4d9b6f1a983f02 Mon Sep 17 00:00:00 2001 From: Quentin Gliech Date: Thu, 7 Dec 2023 16:24:32 +0100 Subject: [PATCH] mas-http: enable the tower/util feature --- crates/http/Cargo.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/crates/http/Cargo.toml b/crates/http/Cargo.toml index c59237d3..b614ed97 100644 --- a/crates/http/Cargo.toml +++ b/crates/http/Cargo.toml @@ -29,7 +29,7 @@ serde_json.workspace = true serde_urlencoded = "0.7.1" thiserror.workspace = true tokio = { version = "1.34.0", features = ["sync", "parking_lot"], optional = true } -tower = { version = "0.4.13", features = [] } +tower = { version = "0.4.13", features = ["util"] } tower-http = { version = "0.4.4", features = ["cors"] } tracing.workspace = true tracing-opentelemetry.workspace = true @@ -40,7 +40,6 @@ mas-tower.workspace = true [dev-dependencies] anyhow.workspace = true tokio = { version = "1.34.0", features = ["macros", "rt"] } -tower = { version = "0.4.13", features = ["util"] } [features] axum = ["dep:axum"]