From 71ebeb003084429cf6b1c10efe293f80f34fe7f3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Jul 2024 00:47:54 +0000 Subject: [PATCH] chore(deps): bump http-body from 0.4.5 to 1.0.1 Bumps [http-body](https://github.com/hyperium/http-body) from 0.4.5 to 1.0.1. - [Release notes](https://github.com/hyperium/http-body/releases) - [Commits](https://github.com/hyperium/http-body/compare/v0.4.5...v1.0.1) --- updated-dependencies: - dependency-name: http-body dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 53 +++++++++++++++++++++++++++++++++++++---------------- Cargo.toml | 2 +- 2 files changed, 38 insertions(+), 17 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d01c063..2701f80 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -45,8 +45,8 @@ dependencies = [ "bitflags 1.3.2", "bytes", "futures-util", - "http", - "http-body", + "http 0.2.10", + "http-body 0.4.6", "hyper", "itoa", "matchit", @@ -74,8 +74,8 @@ dependencies = [ "async-trait", "bytes", "futures-util", - "http", - "http-body", + "http 0.2.10", + "http-body 0.4.6", "mime", "tower-layer", "tower-service", @@ -89,8 +89,8 @@ dependencies = [ "axum", "axum-core", "bytes", - "http", - "http-body", + "http 0.2.10", + "http-body 1.0.1", "mime", "quick-xml", "reqwest", @@ -280,7 +280,7 @@ dependencies = [ "futures-core", "futures-sink", "futures-util", - "http", + "http 0.2.10", "indexmap", "slab", "tokio", @@ -305,17 +305,38 @@ dependencies = [ "itoa", ] +[[package]] +name = "http" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258" +dependencies = [ + "bytes", + "fnv", + "itoa", +] + [[package]] name = "http-body" -version = "0.4.5" +version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" +checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2" dependencies = [ "bytes", - "http", + "http 0.2.10", "pin-project-lite", ] +[[package]] +name = "http-body" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" +dependencies = [ + "bytes", + "http 1.1.0", +] + [[package]] name = "http-range-header" version = "0.3.0" @@ -345,8 +366,8 @@ dependencies = [ "futures-core", "futures-util", "h2", - "http", - "http-body", + "http 0.2.10", + "http-body 0.4.6", "httparse", "httpdate", "itoa", @@ -667,8 +688,8 @@ dependencies = [ "futures-core", "futures-util", "h2", - "http", - "http-body", + "http 0.2.10", + "http-body 0.4.6", "hyper", "hyper-tls", "ipnet", @@ -982,8 +1003,8 @@ dependencies = [ "bytes", "futures-core", "futures-util", - "http", - "http-body", + "http 0.2.10", + "http-body 0.4.6", "http-range-header", "pin-project-lite", "tower", diff --git a/Cargo.toml b/Cargo.toml index 3839f15..ab2a39d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,7 +24,7 @@ async-trait = "0.1" axum-core = "0.2" bytes = "1.6" http = "0.2" -http-body = "0.4" +http-body = "1.0" mime = "0.3" quick-xml = { version = "0.26", features = ["serialize"] } serde = "1.0"