diff --git a/Cargo.lock b/Cargo.lock index cefc4420f..9e6da9eed 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1451,6 +1451,7 @@ dependencies = [ "futures", "http-body-util", "hyper", + "hyper-util", "ipnet", "k8s-openapi", "kube", diff --git a/Cargo.toml b/Cargo.toml index aa9d3e31f..d830b0d17 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,6 +18,7 @@ lto = "thin" gateway-api = "0.15" http = "1" hyper = "1" +hyper-util = { version = "0.1", default-features = false, features = ["tracing"] } k8s-openapi = { version = "0.24", features = ["v1_32"] } kube = { version = "0.99", default-features = false } kubert = { version = "0.24", default-features = false } diff --git a/policy-controller/runtime/Cargo.toml b/policy-controller/runtime/Cargo.toml index fdeede564..9ef81ace2 100644 --- a/policy-controller/runtime/Cargo.toml +++ b/policy-controller/runtime/Cargo.toml @@ -22,6 +22,7 @@ futures = { version = "0.3", default-features = false } k8s-openapi = { workspace = true } http-body-util = "0.1" hyper = { workspace = true, features = ["http1", "http2", "server"] } +hyper-util = { workspace = true } ipnet = { version = "2", default-features = false } openssl = { version = "0.10.71", optional = true } parking_lot = "0.12" diff --git a/policy-test/Cargo.toml b/policy-test/Cargo.toml index 8cb696842..50afeff3a 100644 --- a/policy-test/Cargo.toml +++ b/policy-test/Cargo.toml @@ -10,7 +10,7 @@ anyhow = "1" bytes = "1" http-body-util = "0.1" hyper = { workspace = true, features = ["client", "http2"] } -hyper-util = { version = "0.1" } +hyper-util = { workspace = true } futures = { version = "0.3", default-features = false } ipnet = "2" k8s-openapi = { workspace = true }