From 79b27deec96c16b5f97f56d9c02dc00621d3dcfc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 5 Apr 2024 19:46:18 +0000 Subject: [PATCH] build(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 | 25 ++++++++++++++++++------- Cargo.toml | 2 +- 2 files changed, 19 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ef0e79ed..b7b72e6e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -839,7 +839,7 @@ dependencies = [ "futures-core", "futures-sink", "futures-util", - "http", + "http 0.2.12", "indexmap", "slab", "tokio", @@ -882,9 +882,20 @@ dependencies = [ [[package]] name = "http" -version = "0.2.9" +version = "0.2.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482" +checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1" +dependencies = [ + "bytes", + "fnv", + "itoa", +] + +[[package]] +name = "http" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258" dependencies = [ "bytes", "fnv", @@ -898,7 +909,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" dependencies = [ "bytes", - "http", + "http 0.2.12", "pin-project-lite", ] @@ -931,7 +942,7 @@ dependencies = [ "futures-core", "futures-util", "h2", - "http", + "http 0.2.12", "http-body", "httparse", "httpdate", @@ -1625,7 +1636,7 @@ dependencies = [ "futures-core", "futures-util", "h2", - "http", + "http 0.2.12", "http-body", "hyper", "hyper-tls", @@ -2615,7 +2626,7 @@ dependencies = [ "fn-error-context", "futures", "glob", - "http", + "http 1.1.0", "intervaltree", "lazy_static", "libc", diff --git a/Cargo.toml b/Cargo.toml index 75b48971..2993a6ef 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -50,7 +50,7 @@ users = "0.11.0" zbus = "3" [dev-dependencies] -http = "0.2" +http = "1.1" mockito = "1.4" proptest = "1.4" tempfile = ">= 3.7, < 4.0"