diff --git a/Cargo.lock b/Cargo.lock index 1634c2f..bd17f11 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2816,6 +2816,10 @@ version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "36b837f86b25d7c0d7988f00a54e74739be6477f2aac6201b8f429a7569991b7" dependencies = [ + "futures-core", + "futures-util", + "pin-project-lite", + "sync_wrapper 0.1.2", "tower-layer", "tower-service", ] diff --git a/Cargo.toml b/Cargo.toml index 6140143..20ce04b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -45,7 +45,7 @@ tera = { version = "1.20.0", default-features = false } thiserror = "1.0.63" time = { version = "0.3.36", features = ["formatting", "macros", "parsing", "serde"] } tokio = { version = "1.39.3", features = ["macros", "net", "rt-multi-thread"] } -tower = "0.5.0" +tower = { version = "0.5.0", features = ["util"] } tower-http = { version = "0.5.2", features = ["set-header", "trace"] } tracing = "0.1.40" tracing-subscriber = { version = "0.3.18", features = ["local-time", "time"] }