From a78f674761a9acc5e62d2c91227479b8e2e0ae98 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Jan 2025 09:10:29 +0000 Subject: [PATCH] Bump the default group with 2 updates Bumps the default group with 2 updates: [reqwest](https://github.com/seanmonstar/reqwest) and [serde](https://github.com/serde-rs/serde). Updates `reqwest` from 0.12.9 to 0.12.12 - [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.12) Updates `serde` from 1.0.216 to 1.0.217 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.216...v1.0.217) --- updated-dependencies: - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: default - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: default ... Signed-off-by: dependabot[bot] --- Cargo.lock | 34 ++++++++++++++++++++++++----- lib/borderlands-launcher/Cargo.toml | 2 +- lib/shift-orcz/Cargo.toml | 2 +- shift-client-cli/Cargo.toml | 2 +- shift-client/Cargo.toml | 4 ++-- 5 files changed, 33 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 68164dd..c138370 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1315,9 +1315,9 @@ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c" [[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", @@ -1353,6 +1353,7 @@ dependencies = [ "tokio-native-tls", "tokio-rustls", "tokio-util", + "tower", "tower-service", "url", "wasm-bindgen", @@ -1525,18 +1526,18 @@ dependencies = [ [[package]] name = "serde" -version = "1.0.216" +version = "1.0.217" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0b9781016e935a97e8beecf0c933758c97a5520d32930e460142b4cd80c6338e" +checksum = "02fc4265df13d6fa1d00ecff087228cc0a2b5f3c0e87e258d8b94a156e984c70" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.216" +version = "1.0.217" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "46f859dbbf73865c6627ed570e78961cd3ac92407a2d117204c49232485da55e" +checksum = "5a9bf7cf98d04a2b28aead066b7496853d4779c9cc183c440dbac457641e19a0" dependencies = [ "proc-macro2", "quote", @@ -1885,6 +1886,27 @@ dependencies = [ "tokio", ] +[[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/lib/borderlands-launcher/Cargo.toml b/lib/borderlands-launcher/Cargo.toml index 883bfaf..9defb18 100644 --- a/lib/borderlands-launcher/Cargo.toml +++ b/lib/borderlands-launcher/Cargo.toml @@ -13,7 +13,7 @@ async-compression = { version = "0.4.18", features = [ "tokio", "gzip" ], defaul bytes = { version = "1.9.0", default-features = false } futures-util = { version = "0.3.31", default-features = false } prost = "0.13.4" -reqwest = { version = "0.12.9", features = [ "gzip", "deflate", "stream" ], default-features = false } +reqwest = { version = "0.12.12", features = [ "gzip", "deflate", "stream" ], default-features = false } thiserror = "2.0.9" tokio = { version = "1.42.0", default-features = false } tokio-util = { version = "0.7.13", features = [ "io" ], default-features = false } diff --git a/lib/shift-orcz/Cargo.toml b/lib/shift-orcz/Cargo.toml index f5e3980..cf8d411 100644 --- a/lib/shift-orcz/Cargo.toml +++ b/lib/shift-orcz/Cargo.toml @@ -7,7 +7,7 @@ license = "MIT OR Apache-2.0" [dependencies] once_cell = "1.20.2" regex = "1.11.1" -reqwest = { version = "0.12.9", default-features = false } +reqwest = { version = "0.12.12", default-features = false } scraper = { version = "0.22.0", default-features = false } thiserror = "2.0.9" time = { version = "0.3.37", features = [ "parsing", "macros" ] } diff --git a/shift-client-cli/Cargo.toml b/shift-client-cli/Cargo.toml index a5aaba2..5e3635f 100644 --- a/shift-client-cli/Cargo.toml +++ b/shift-client-cli/Cargo.toml @@ -10,7 +10,7 @@ path = "src/main.rs" [dependencies] anyhow = "1.0.95" -reqwest = { version = "0.12.9", default-features = false } +reqwest = { version = "0.12.12", default-features = false } shift-client = { version = "0.0.0", path = "../shift-client" } shift-orcz = { version = "0.0.0", path = "../lib/shift-orcz" } tokio = { version = "1.42.0", features = [ "time", "rt-multi-thread" ] } diff --git a/shift-client/Cargo.toml b/shift-client/Cargo.toml index 24bc9c9..c31a711 100644 --- a/shift-client/Cargo.toml +++ b/shift-client/Cargo.toml @@ -6,9 +6,9 @@ license = "MIT OR Apache-2.0" [dependencies] once_cell = "1.20.2" -reqwest = { version = "0.12.9", default-features = false, features = [ "cookies", "json" ] } +reqwest = { version = "0.12.12", default-features = false, features = [ "cookies", "json" ] } scraper = { version = "0.22.0", default-features = false } -serde = { version = "1.0.216", features = [ "derive" ] } +serde = { version = "1.0.217", features = [ "derive" ] } serde_json = "1.0.134" thiserror = "2.0.9" tokio = { version = "1.42.0", features = [ "time" ] }