From 446341db02250897dcad5dba1c3050d295009850 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 2 Apr 2024 05:26:16 +0000 Subject: [PATCH] chore(deps): bump http from 1.0.0 to 1.1.0 Bumps [http](https://github.com/hyperium/http) from 1.0.0 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/v1.0.0...v1.1.0) --- updated-dependencies: - dependency-name: http dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 24 ++++++++++++------------ src/kiwi-sdk/Cargo.toml | 2 +- src/kiwi/Cargo.toml | 2 +- 3 files changed, 14 insertions(+), 14 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4e1ad4d..6daaea8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -184,7 +184,7 @@ dependencies = [ "async-trait", "bytes", "futures-util", - "http 1.0.0", + "http 1.1.0", "http-body 1.0.0", "http-body-util", "mime", @@ -786,7 +786,7 @@ dependencies = [ "axum-core", "base64 0.21.5", "bytes", - "http 1.0.0", + "http 1.1.0", "http-body-util", "hyper 1.2.0", "hyper-util", @@ -1057,7 +1057,7 @@ dependencies = [ "futures-core", "futures-sink", "futures-util", - "http 1.0.0", + "http 1.1.0", "indexmap", "slab", "tokio", @@ -1129,9 +1129,9 @@ dependencies = [ [[package]] name = "http" -version = "1.0.0" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b32afd38673a8016f7c9ae69e5af41a58f81b1d31689040f2f1959594ce194ea" +checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258" dependencies = [ "bytes", "fnv", @@ -1156,7 +1156,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1cac85db508abc24a2e48553ba12a996e87244a0395ce011e62b37158745d643" dependencies = [ "bytes", - "http 1.0.0", + "http 1.1.0", ] [[package]] @@ -1167,7 +1167,7 @@ checksum = "0475f8b2ac86659c21b64320d5d653f9efe42acd2a4e560073ec61a155a34f1d" dependencies = [ "bytes", "futures-core", - "http 1.0.0", + "http 1.1.0", "http-body 1.0.0", "pin-project-lite", ] @@ -1218,7 +1218,7 @@ dependencies = [ "futures-channel", "futures-util", "h2 0.4.2", - "http 1.0.0", + "http 1.1.0", "http-body 1.0.0", "httparse", "httpdate", @@ -1250,7 +1250,7 @@ checksum = "ca38ef113da30126bbff9cd1705f9273e15d45498615d138b0c20279ac7a76aa" dependencies = [ "bytes", "futures-util", - "http 1.0.0", + "http 1.1.0", "http-body 1.0.0", "hyper 1.2.0", "pin-project-lite", @@ -1409,7 +1409,7 @@ dependencies = [ "fastwebsockets", "futures", "futures-util", - "http 1.0.0", + "http 1.1.0", "http-body-util", "hyper 1.2.0", "hyper-util", @@ -1454,7 +1454,7 @@ name = "kiwi-sdk" version = "0.1.1-alpha.7" dependencies = [ "anyhow", - "http 1.0.0", + "http 1.1.0", "kiwi-macro", "wit-bindgen", ] @@ -3430,7 +3430,7 @@ dependencies = [ "async-trait", "bytes", "futures", - "http 1.0.0", + "http 1.1.0", "http-body 1.0.0", "http-body-util", "hyper 1.2.0", diff --git a/src/kiwi-sdk/Cargo.toml b/src/kiwi-sdk/Cargo.toml index 5e98c10..ed24eda 100644 --- a/src/kiwi-sdk/Cargo.toml +++ b/src/kiwi-sdk/Cargo.toml @@ -12,4 +12,4 @@ description = "The Kiwi SDK allows you to write pluggable modules that hook into anyhow = "1.0.79" kiwi-macro = { version = "~0.1.1-alpha.7", path = "./macro" } wit-bindgen = "0.21.0" -http = "1.0.0" +http = "1.1.0" diff --git a/src/kiwi/Cargo.toml b/src/kiwi/Cargo.toml index c90de0a..891d3e8 100644 --- a/src/kiwi/Cargo.toml +++ b/src/kiwi/Cargo.toml @@ -34,7 +34,7 @@ wit-component = "0.20.1" ringbuf = "0.3.3" async-stream = "0.3.5" futures-util = "0.3.30" -http = "1.0.0" +http = "1.1.0" notify = "6.1.1" arc-swap = "1.7.0" fastwebsockets = { version = "0.7.0", features = ["with_axum", "upgrade"] }