diff --git a/Cargo.lock b/Cargo.lock index 403042e409..9a5bedd82d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6707,6 +6707,7 @@ dependencies = [ "tokio-stream", "tokio-util 0.7.1", "tower", + "tower-http 0.3.3", "tracing", "tracing-core", "tracing-log", diff --git a/workspace-hack/Cargo.toml b/workspace-hack/Cargo.toml index c731a91525..9990291781 100644 --- a/workspace-hack/Cargo.toml +++ b/workspace-hack/Cargo.toml @@ -66,6 +66,7 @@ tokio-rustls = { version = "0.23", default-features = false, features = ["loggin tokio-stream = { version = "0.1", features = ["fs", "net", "time"] } tokio-util = { version = "0.7", features = ["codec", "io", "slab", "time", "tracing"] } tower = { version = "0.4", features = ["__common", "balance", "buffer", "discover", "filter", "futures-core", "futures-util", "indexmap", "limit", "load", "log", "make", "pin-project", "pin-project-lite", "rand", "ready-cache", "slab", "timeout", "tokio", "tokio-util", "tracing", "util"] } +tower-http = { version = "0.3", features = ["auth", "base64", "map-response-body", "tower", "trace", "tracing", "util"] } tracing = { version = "0.1", features = ["attributes", "log", "max_level_trace", "release_max_level_trace", "std", "tracing-attributes"] } tracing-core = { version = "0.1", features = ["lazy_static", "std"] } tracing-log = { version = "0.1", features = ["log-tracer", "std", "trace-logger"] }