diff --git a/Cargo.lock b/Cargo.lock index a8d60bee..577ec283 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1466,9 +1466,9 @@ dependencies = [ [[package]] name = "reqwest" -version = "0.11.11" +version = "0.11.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b75aa69a3f06bbcc66ede33af2af253c6f7a86b1ca0033f60c580a27074fbf92" +checksum = "431949c384f4e2ae07605ccaa56d1d9d2ecdb5cadd4f9577ccfab29f2e5149fc" dependencies = [ "base64", "bytes", @@ -1483,10 +1483,10 @@ dependencies = [ "hyper-tls", "ipnet", "js-sys", - "lazy_static", "log", "mime", "native-tls", + "once_cell", "percent-encoding", "pin-project-lite", "rustls", diff --git a/crates/bin/Cargo.toml b/crates/bin/Cargo.toml index ffe96ddd..c99c2e6d 100644 --- a/crates/bin/Cargo.toml +++ b/crates/bin/Cargo.toml @@ -29,7 +29,7 @@ dirs = "4.0.0" log = "0.4.17" miette = "5.3.0" mimalloc = { version = "0.1.29", default-features = false, optional = true } -reqwest = { version = "0.11.11", default-features = false } +reqwest = { version = "0.11.12", default-features = false } semver = "1.0.13" simplelog = "0.12.0" tempfile = "3.3.0" diff --git a/crates/binstalk/Cargo.toml b/crates/binstalk/Cargo.toml index 3083057a..6de9dfee 100644 --- a/crates/binstalk/Cargo.toml +++ b/crates/binstalk/Cargo.toml @@ -30,7 +30,7 @@ log = { version = "0.4.17", features = ["std"] } miette = "5.3.0" normalize-path = { version = "0.1.0", path = "../normalize-path" } once_cell = "1.13.0" -reqwest = { version = "0.11.11", features = ["stream"], default-features = false } +reqwest = { version = "0.11.12", features = ["stream"], default-features = false } scopeguard = "1.1.0" semver = { version = "1.0.13", features = ["serde"] } serde = { version = "1.0.143", features = ["derive"] }