diff --git a/Cargo.lock b/Cargo.lock index 9d77a17..7baac50 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1034,7 +1034,7 @@ dependencies = [ "futures-core", "futures-sink", "futures-util", - "http 1.0.0", + "http 1.1.0", "indexmap", "slab", "tokio", @@ -1106,9 +1106,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", @@ -1133,7 +1133,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1cac85db508abc24a2e48553ba12a996e87244a0395ce011e62b37158745d643" dependencies = [ "bytes", - "http 1.0.0", + "http 1.1.0", ] [[package]] @@ -1144,7 +1144,7 @@ checksum = "0475f8b2ac86659c21b64320d5d653f9efe42acd2a4e560073ec61a155a34f1d" dependencies = [ "bytes", "futures-core", - "http 1.0.0", + "http 1.1.0", "http-body 1.0.0", "pin-project-lite", ] @@ -1195,7 +1195,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", @@ -1227,7 +1227,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", @@ -1386,7 +1386,7 @@ dependencies = [ "fastwebsockets", "futures", "futures-util", - "http 1.0.0", + "http 1.1.0", "http-body-util", "hyper 1.2.0", "hyper-util", @@ -1431,7 +1431,7 @@ name = "kiwi-sdk" version = "0.1.1" dependencies = [ "anyhow", - "http 1.0.0", + "http 1.1.0", "kiwi-macro", "wit-bindgen", ] @@ -3395,7 +3395,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 5173754..eb2ea65 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", 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 3f352a5..bf7d01d 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 = ["upgrade"] }