From e3f913e4f599aa23d3bffef2ab7eca4ab831f134 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 30 Dec 2024 03:43:10 +0000 Subject: [PATCH] build(deps): bump reqwest from 0.12.9 to 0.12.11 Bumps [reqwest](https://github.com/seanmonstar/reqwest) from 0.12.9 to 0.12.11. - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.12.9...v0.12.11) --- updated-dependencies: - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 26 ++++++++++++++++++++++++-- crates/command/Cargo.toml | 2 +- crates/lib/Cargo.toml | 2 +- 3 files changed, 26 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4551bb7..ca9dc5d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2797,9 +2797,9 @@ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c" [[package]] name = "reqwest" -version = "0.12.9" +version = "0.12.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a77c62af46e79de0a562e1a9849205ffcb7fc1238876e9bd743357570e04046f" +checksum = "7fe060fe50f524be480214aba758c71f99f90ee8c83c5a36b5e9e1d568eb4eb3" dependencies = [ "base64 0.22.1", "bytes", @@ -2830,6 +2830,7 @@ dependencies = [ "system-configuration", "tokio", "tokio-native-tls", + "tower", "tower-service", "url", "wasm-bindgen", @@ -3566,6 +3567,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/crates/command/Cargo.toml b/crates/command/Cargo.toml index 46f8279..a1615c4 100644 --- a/crates/command/Cargo.toml +++ b/crates/command/Cargo.toml @@ -50,7 +50,7 @@ indexmap = "2.7.0" tui = { workspace = true } app = { workspace = true } lib = { workspace = true } -reqwest = { version = "0.12.9", features = ["json"] } +reqwest = { version = "0.12.11", features = ["json"] } [features] ssl-vendored = [ diff --git a/crates/lib/Cargo.toml b/crates/lib/Cargo.toml index 6c4bc03..07bf6f8 100644 --- a/crates/lib/Cargo.toml +++ b/crates/lib/Cargo.toml @@ -22,7 +22,7 @@ nom = "8.0.0-beta.1" rdkafka = { version = "0.37.0", features = [], optional = true} url = "2.5.4" apache-avro = "0.17.0" -reqwest = { version = "0.12.9", features = ["json"] } +reqwest = { version = "0.12.11", features = ["json"] } [dev-dependencies]