From 23df142d98919171bafdd5560c073409196cba8d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 9 May 2024 18:11:36 +0000 Subject: [PATCH] chore(deps): bump http from 0.2.9 to 1.1.0 Bumps [http](https://github.com/hyperium/http) from 0.2.9 to 1.1.0. - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.9...v1.1.0) --- updated-dependencies: - dependency-name: http dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 23 +++++++++++++++++------ src/k8-client/Cargo.toml | 2 +- 2 files changed, 18 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3125508..1a0f169 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -838,7 +838,7 @@ dependencies = [ "futures-core", "futures-sink", "futures-util", - "http", + "http 0.2.12", "indexmap", "slab", "tokio", @@ -866,9 +866,20 @@ checksum = "d72fd847c96f06bdb098b085660dca099381b7b14314f771deb3add755399e0c" [[package]] name = "http" -version = "0.2.9" +version = "0.2.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1" +dependencies = [ + "bytes", + "fnv", + "itoa", +] + +[[package]] +name = "http" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482" +checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258" dependencies = [ "bytes", "fnv", @@ -882,7 +893,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" dependencies = [ "bytes", - "http", + "http 0.2.12", "pin-project-lite", ] @@ -918,7 +929,7 @@ dependencies = [ "futures-core", "futures-util", "h2", - "http", + "http 0.2.12", "http-body", "httparse", "httpdate", @@ -1041,7 +1052,7 @@ dependencies = [ "cfg-if", "fluvio-future", "futures-util", - "http", + "http 1.1.0", "hyper", "k8-config", "k8-diff", diff --git a/src/k8-client/Cargo.toml b/src/k8-client/Cargo.toml index 132accf..b4ca1dd 100644 --- a/src/k8-client/Cargo.toml +++ b/src/k8-client/Cargo.toml @@ -30,7 +30,7 @@ futures-util = { version="0.3.21", features=["io"] } rand = { version="0.8.3" } rustls = { version="0.21", optional=true } hyper = { version="0.14.28", features=["client", "http1", "http2", "stream"] } -http = { version="0.2" } +http = { version="1.1" } tokio = { version="1.37.0" } pin-utils = "0.1.0" serde = { version="1.0.136", features=['derive'] }