From 1d0576766c543d3267ed6e489035e8acba677232 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 30 Dec 2024 22:04:43 +0000 Subject: [PATCH] build(deps): bump the cargo-minor group across 1 directory with 4 updates Bumps the cargo-minor group with 4 updates in the / directory: [serde](https://github.com/serde-rs/serde), [quote](https://github.com/dtolnay/quote), [syn](https://github.com/dtolnay/syn) and [reqwest](https://github.com/seanmonstar/reqwest). 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) Updates `quote` from 1.0.37 to 1.0.38 - [Release notes](https://github.com/dtolnay/quote/releases) - [Commits](https://github.com/dtolnay/quote/compare/1.0.37...1.0.38) Updates `syn` from 2.0.91 to 2.0.93 - [Release notes](https://github.com/dtolnay/syn/releases) - [Commits](https://github.com/dtolnay/syn/compare/2.0.91...2.0.93) Updates `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: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: quote dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: syn dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 42 +++++++++++++++++++++++------- Cargo.toml | 2 +- core/build_playerglobal/Cargo.toml | 2 +- core/macros/Cargo.toml | 4 +-- frontend-utils/Cargo.toml | 2 +- video/external/Cargo.toml | 2 +- 6 files changed, 38 insertions(+), 16 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9f537f9ad0369..b8d17059a80f2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3829,9 +3829,9 @@ dependencies = [ [[package]] name = "quote" -version = "1.0.37" +version = "1.0.38" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af" +checksum = "0e4dccaaaf89514f546c693ddc140f729f958c247918a13380cccc6078391acc" dependencies = [ "proc-macro2", ] @@ -4013,9 +4013,9 @@ checksum = "19b30a45b0cd0bcca8037f3d0dc3421eaf95327a17cad11964fb8179b4fc4832" [[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", "bytes", @@ -4050,6 +4050,7 @@ dependencies = [ "system-configuration", "tokio", "tokio-rustls", + "tower", "tower-service", "url", "wasm-bindgen", @@ -4686,9 +4687,9 @@ 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", ] @@ -4706,9 +4707,9 @@ dependencies = [ [[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", @@ -5041,9 +5042,9 @@ dependencies = [ [[package]] name = "syn" -version = "2.0.91" +version = "2.0.93" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d53cbcb5a243bd33b7858b1d7f4aca2153490815872d86d955d6ea29f743c035" +checksum = "9c786062daee0d6db1132800e623df74274a0a87322d8e183338e01b3d98d058" dependencies = [ "proc-macro2", "quote", @@ -5369,6 +5370,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 7067d8e4c2633..1d0b3beea426e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -68,7 +68,7 @@ web-sys = "0.3.76" log = "0.4" num-derive = "0.4.2" num-traits = "0.2.19" -serde = "1.0.215" +serde = "1.0.217" thiserror = "2.0.9" url = "2.5.2" # Make sure to match wasm-bindgen-cli version to this everywhere. diff --git a/core/build_playerglobal/Cargo.toml b/core/build_playerglobal/Cargo.toml index 9267873c02c41..dc7bab72147f5 100644 --- a/core/build_playerglobal/Cargo.toml +++ b/core/build_playerglobal/Cargo.toml @@ -13,7 +13,7 @@ workspace = true [dependencies] convert_case = "0.6.0" proc-macro2 = "1.0.89" -quote = "1.0.37" +quote = "1.0.38" swf = { path = "../../swf" } clap = { workspace = true } regex = "1.11.1" diff --git a/core/macros/Cargo.toml b/core/macros/Cargo.toml index 3f9fa596b4364..a177943c78d4a 100644 --- a/core/macros/Cargo.toml +++ b/core/macros/Cargo.toml @@ -14,5 +14,5 @@ workspace = true proc-macro = true [dependencies] -quote = "1.0.37" -syn = { version = "2.0.91", features = ["extra-traits", "full"] } +quote = "1.0.38" +syn = { version = "2.0.93", features = ["extra-traits", "full"] } diff --git a/frontend-utils/Cargo.toml b/frontend-utils/Cargo.toml index 4c4a9a90a0b02..ffe186f84b603 100644 --- a/frontend-utils/Cargo.toml +++ b/frontend-utils/Cargo.toml @@ -26,7 +26,7 @@ async-channel = { workspace = true } slotmap = { workspace = true } async-io = "2.4.0" futures-lite = "2.5.0" -reqwest = { version = "0.12.9", default-features = false, features = [ +reqwest = { version = "0.12.11", default-features = false, features = [ "rustls-tls", "cookies", "charset", diff --git a/video/external/Cargo.toml b/video/external/Cargo.toml index 8d04bd836e5d3..2527b99944a83 100644 --- a/video/external/Cargo.toml +++ b/video/external/Cargo.toml @@ -18,7 +18,7 @@ thiserror = { workspace = true } # Needed for OpenH264: libloading = { version = "0.8.6", optional = true } -reqwest = { version = "0.12.9", default-features = false, features = ["blocking"], optional = true } +reqwest = { version = "0.12.11", default-features = false, features = ["blocking"], optional = true } hex = { version = "0.4.3", optional = true } bzip2 = { version = "0.5.0", features = ["static"], optional = true } tempfile = { version = "3.14.0", optional = true }