From 87d3222e57d67017bdb81d4c36cf2ae85d9c2939 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 20 Nov 2023 16:00:40 +0000 Subject: [PATCH] fix(deps): update rust crate http to v1 --- Cargo.lock | 29 ++++++++++++++++++++--------- crates/updater/Cargo.toml | 2 +- 2 files changed, 21 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2173cca2..300b03f1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1063,7 +1063,7 @@ dependencies = [ "dirs", "dunce", "flate2", - "http", + "http 1.0.0", "minisign-verify", "reqwest", "semver", @@ -3200,7 +3200,7 @@ dependencies = [ "futures-core", "futures-sink", "futures-util", - "http", + "http 0.2.11", "indexmap 2.1.0", "slab", "tokio", @@ -3313,6 +3313,17 @@ dependencies = [ "itoa 1.0.9", ] +[[package]] +name = "http" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b32afd38673a8016f7c9ae69e5af41a58f81b1d31689040f2f1959594ce194ea" +dependencies = [ + "bytes", + "fnv", + "itoa 1.0.9", +] + [[package]] name = "http-body" version = "0.4.5" @@ -3320,7 +3331,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" dependencies = [ "bytes", - "http", + "http 0.2.11", "pin-project-lite", ] @@ -3353,7 +3364,7 @@ dependencies = [ "futures-core", "futures-util", "h2", - "http", + "http 0.2.11", "http-body", "httparse", "httpdate", @@ -3373,7 +3384,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590" dependencies = [ "futures-util", - "http", + "http 0.2.11", "hyper", "rustls", "tokio", @@ -5724,7 +5735,7 @@ dependencies = [ "futures-core", "futures-util", "h2", - "http", + "http 0.2.11", "http-body", "hyper", "hyper-rustls", @@ -6928,7 +6939,7 @@ dependencies = [ "glob", "gtk", "heck", - "http", + "http 0.2.11", "jni 0.20.0", "libc", "log", @@ -7061,7 +7072,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d7ce19f1309299bbc38ee9236307fad4943bd8fb09dd3fea5e9dd93c1d0898d6" dependencies = [ "gtk", - "http", + "http 0.2.11", "http-range", "jni 0.20.0", "rand 0.8.5", @@ -8845,7 +8856,7 @@ dependencies = [ "glib", "gtk", "html5ever", - "http", + "http 0.2.11", "javascriptcore-rs", "kuchiki", "libc", diff --git a/crates/updater/Cargo.toml b/crates/updater/Cargo.toml index bb2e1cb8..aedd715f 100644 --- a/crates/updater/Cargo.toml +++ b/crates/updater/Cargo.toml @@ -22,7 +22,7 @@ dirs = { workspace = true } semver = { workspace = true } base64 = { workspace = true } time = { workspace = true, features = ["parsing", "formatting"] } -http = "0.2" +http = "1.0" url = { version = "2.4", features = ["serde"]} minisign-verify = "0.2" ctor = "0.2"