diff --git a/examples/Cargo.toml b/examples/Cargo.toml index ecc070bb3..00b0c4041 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -49,7 +49,7 @@ http = "0.2.5" json-patch = "1.0.0" tower = { version = "0.4.13", features = ["limit"] } tower-http = { version = "0.4.0", features = ["trace", "decompression-gzip"] } -hyper = { version = "0.14.13", features = ["client", "http1", "stream", "tcp"] } +hyper = { version = "1.2.0", features = ["client", "http1", "stream", "tcp"] } thiserror = "1.0.29" backoff = "0.4.0" clap = { version = "4.0", default-features = false, features = ["std", "cargo", "derive"] } diff --git a/kube-client/Cargo.toml b/kube-client/Cargo.toml index 3949aca0a..19fd31155 100644 --- a/kube-client/Cargo.toml +++ b/kube-client/Cargo.toml @@ -58,7 +58,7 @@ tokio = { version = "1.14.0", features = ["time", "signal", "sync"], optional = kube-core = { path = "../kube-core", version = "=0.88.1" } jsonpath-rust = { version = "0.4.0", optional = true } tokio-util = { version = "0.7.0", optional = true, features = ["io", "codec"] } -hyper = { version = "0.14.13", optional = true, features = ["client", "http1", "stream", "tcp"] } +hyper = { version = "1.2.0", optional = true, features = ["client", "http1", "stream", "tcp"] } hyper-rustls = { version = "0.24.0", optional = true } hyper-socks2 = { version = "0.8.0", optional = true, default-features = false } tokio-tungstenite = { version = "0.20.0", optional = true } diff --git a/kube/Cargo.toml b/kube/Cargo.toml index 8dda505ac..f2118939a 100644 --- a/kube/Cargo.toml +++ b/kube/Cargo.toml @@ -61,7 +61,7 @@ futures = "0.3.17" serde_json = "1.0.68" serde = { version = "1.0.130", features = ["derive"] } schemars = "0.8.6" -hyper = "0.14.27" +hyper = "1.2.0" http = "0.2.9" tower-test = "0.4.0" anyhow = "1.0.71"