diff --git a/Cargo.lock b/Cargo.lock index 37d1fb3..61c26b4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2879,9 +2879,9 @@ checksum = "ba39f3699c378cd8970968dcbff9c43159ea4cfbd88d43c00b22f2ef10a435d2" [[package]] name = "reqwest" -version = "0.12.9" +version = "0.12.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a77c62af46e79de0a562e1a9849205ffcb7fc1238876e9bd743357570e04046f" +checksum = "43e734407157c3c2034e0258f5e4473ddb361b1e85f95a66690d67264d7cd1da" dependencies = [ "async-compression", "base64 0.22.1", @@ -2916,6 +2916,7 @@ dependencies = [ "tokio", "tokio-rustls", "tokio-util", + "tower", "tower-service", "url", "wasm-bindgen", @@ -3608,6 +3609,27 @@ dependencies = [ "winnow", ] +[[package]] +name = "tower" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9" +dependencies = [ + "futures-core", + "futures-util", + "pin-project-lite", + "sync_wrapper", + "tokio", + "tower-layer", + "tower-service", +] + +[[package]] +name = "tower-layer" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" + [[package]] name = "tower-service" version = "0.3.3" diff --git a/Cargo.toml b/Cargo.toml index fa6f8ba..c36bd7b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,7 +24,7 @@ chrono = "0.4.39" clap = { version = "4.5.23", features = ["derive", "env", "string"] } toml_edit = { version = "0.22.22", features = ["serde"] } gix-config = { version = "0.42.0", optional = true } -reqwest = { version = "0.12.9", default-features = false, features = [ +reqwest = { version = "0.12.12", default-features = false, features = [ "json", "rustls-tls-native-roots", "gzip", @@ -49,7 +49,7 @@ proptest = "=1.6.0" rstest = "=0.23.0" serde_json = "=1.0.133" tempfile = "=3.14.0" -reqwest = { version = "=0.12.9", default-features = false, features = ["blocking"] } +reqwest = { version = "=0.12.12", default-features = false, features = ["blocking"] } [build-dependencies] vergen-gix = { version = "1.0.3", features = ["cargo", "rustc"] }