From 0bbec4b6bb2e2dc4f7659cea56201a7e32e17be7 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Thu, 23 Nov 2023 22:14:18 +0000 Subject: [PATCH] fix(deps): update rust crate http to v1 --- Cargo.lock | 27 +++++++++++++++++++-------- Cargo.toml | 2 +- 2 files changed, 20 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 69cc9005e..51a1dd714 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -785,6 +785,17 @@ dependencies = [ "itoa", ] +[[package]] +name = "http" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b32afd38673a8016f7c9ae69e5af41a58f81b1d31689040f2f1959594ce194ea" +dependencies = [ + "bytes", + "fnv", + "itoa", +] + [[package]] name = "http-body" version = "0.4.5" @@ -792,7 +803,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" dependencies = [ "bytes", - "http", + "http 0.2.11", "pin-project-lite", ] @@ -824,7 +835,7 @@ dependencies = [ "futures-channel", "futures-core", "futures-util", - "http", + "http 0.2.11", "http-body", "httparse", "httpdate", @@ -843,7 +854,7 @@ version = "0.9.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d6ee5d7a8f718585d1c3c61dfde28ef5b0bb14734b4db13f5ada856cdc6c612b" dependencies = [ - "http", + "http 0.2.11", "hyper", "linked_hash_set", "once_cell", @@ -862,7 +873,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590" dependencies = [ "futures-util", - "http", + "http 0.2.11", "hyper", "log", "rustls", @@ -1024,7 +1035,7 @@ dependencies = [ "either", "futures", "home", - "http", + "http 0.2.11", "http-body", "hyper", "hyper-openssl", @@ -1058,7 +1069,7 @@ checksum = "b8321c315b96b59f59ef6b33f604b84b905ab8f9ff114a4f909d934c520227b1" dependencies = [ "chrono", "form_urlencoded", - "http", + "http 0.2.11", "k8s-openapi", "once_cell", "serde", @@ -1084,7 +1095,7 @@ dependencies = [ "enum_dispatch", "futures", "fuzzy-matcher", - "http", + "http 1.0.0", "indoc", "k8s-openapi", "kube", @@ -2259,7 +2270,7 @@ dependencies = [ "bytes", "futures-core", "futures-util", - "http", + "http 0.2.11", "http-body", "http-range-header", "mime", diff --git a/Cargo.toml b/Cargo.toml index 982e4c44f..8bab0382d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -45,7 +45,7 @@ log4rs = { version = "1", default-features = false, features = ["file_appender", bytes = "1" futures = "0.3" -http = "0.2" +http = "1.0" k8s-openapi = { version = "0.20", default-features = false, features = ["v1_27"] } kube = { version = "0.87", default-features = false, features = ["client"] } serde = { version = "1.0", features = ["derive"] }