From 33432fe46763c05162c43ace80aa651969871f91 Mon Sep 17 00:00:00 2001 From: katelyn martin Date: Thu, 26 Sep 2024 00:00:00 +0000 Subject: [PATCH] chore(deps): address hyper deprecations in `policy-controller-runtime` Signed-off-by: katelyn martin --- policy-controller/runtime/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/policy-controller/runtime/Cargo.toml b/policy-controller/runtime/Cargo.toml index 0a70e6fe21269..2b32882556893 100644 --- a/policy-controller/runtime/Cargo.toml +++ b/policy-controller/runtime/Cargo.toml @@ -19,7 +19,7 @@ async-trait = "0.1" drain = "0.1" futures = { version = "0.3", default-features = false } k8s-openapi = { workspace = true } -hyper = { version = "0.14", features = ["http1", "http2", "runtime", "server"] } +hyper = { version = "0.14", features = ["backports", "deprecated", "http1", "http2", "runtime", "server"] } ipnet = { version = "2", default-features = false } openssl = { version = "0.10.68", optional = true } parking_lot = "0.12"