From 7dcfa9ad340d8e7a84ed138031fe337e148b0333 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 Jan 2025 12:04:27 +0000 Subject: [PATCH] Bump the cargo group with 4 updates Bumps the cargo group with 4 updates: [itertools](https://github.com/rust-itertools/itertools), [winit](https://github.com/rust-windowing/winit), [tempfile](https://github.com/Stebalien/tempfile) and [reqwest](https://github.com/seanmonstar/reqwest). Updates `itertools` from 0.13.0 to 0.14.0 - [Changelog](https://github.com/rust-itertools/itertools/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-itertools/itertools/compare/v0.13.0...v0.14.0) Updates `winit` from 0.30.7 to 0.30.8 - [Release notes](https://github.com/rust-windowing/winit/releases) - [Changelog](https://github.com/rust-windowing/winit/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-windowing/winit/compare/v0.30.7...v0.30.8) Updates `tempfile` from 3.14.0 to 3.15.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.14.0...v3.15.0) Updates `reqwest` from 0.12.11 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.11...v0.12.12) --- updated-dependencies: - dependency-name: itertools dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cargo - dependency-name: winit dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cargo - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo ... Signed-off-by: dependabot[bot] --- Cargo.lock | 17 +++++++++-------- crates/fj-core/Cargo.toml | 2 +- crates/fj-window/Cargo.toml | 2 +- tools/export-validator/Cargo.toml | 2 +- tools/release-operator/Cargo.toml | 2 +- 5 files changed, 13 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 53b2e1e88..2781e13cb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1695,9 +1695,9 @@ checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf" [[package]] name = "itertools" -version = "0.13.0" +version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186" +checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285" dependencies = [ "either", ] @@ -2862,9 +2862,9 @@ checksum = "19b30a45b0cd0bcca8037f3d0dc3421eaf95327a17cad11964fb8179b4fc4832" [[package]] name = "reqwest" -version = "0.12.11" +version = "0.12.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7fe060fe50f524be480214aba758c71f99f90ee8c83c5a36b5e9e1d568eb4eb3" +checksum = "43e734407157c3c2034e0258f5e4473ddb361b1e85f95a66690d67264d7cd1da" dependencies = [ "base64 0.22.1", "bytes", @@ -3482,12 +3482,13 @@ dependencies = [ [[package]] name = "tempfile" -version = "3.14.0" +version = "3.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "28cce251fcbc87fac86a866eeb0d6c2d536fc16d06f184bb61aeae11aa4cee0c" +checksum = "9a8a559c81686f576e8cd0290cd2a24a2a9ad80c98b3478856500fcbd7acd704" dependencies = [ "cfg-if", "fastrand", + "getrandom", "once_cell", "rustix", "windows-sys 0.59.0", @@ -4606,9 +4607,9 @@ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" [[package]] name = "winit" -version = "0.30.7" +version = "0.30.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dba50bc8ef4b6f1a75c9274fb95aa9a8f63fbc66c56f391bd85cf68d51e7b1a3" +checksum = "f5d74280aabb958072864bff6cfbcf9025cf8bfacdde5e32b5e12920ef703b0f" dependencies = [ "ahash", "android-activity", diff --git a/crates/fj-core/Cargo.toml b/crates/fj-core/Cargo.toml index ce9590b48..82e8b700a 100644 --- a/crates/fj-core/Cargo.toml +++ b/crates/fj-core/Cargo.toml @@ -16,7 +16,7 @@ workspace = true [dependencies] fj-interop.workspace = true fj-math.workspace = true -itertools = "0.13.0" +itertools = "0.14.0" parking_lot = "0.12.3" robust = "1.1.0" spade = "2.12.1" diff --git a/crates/fj-window/Cargo.toml b/crates/fj-window/Cargo.toml index c014e758c..92a749b4b 100644 --- a/crates/fj-window/Cargo.toml +++ b/crates/fj-window/Cargo.toml @@ -20,4 +20,4 @@ fj-math.workspace = true fj-viewer.workspace = true futures = "0.3.31" thiserror = "2.0.9" -winit = "0.30.7" +winit = "0.30.8" diff --git a/tools/export-validator/Cargo.toml b/tools/export-validator/Cargo.toml index 33d4bb6fd..95b12a0a7 100644 --- a/tools/export-validator/Cargo.toml +++ b/tools/export-validator/Cargo.toml @@ -7,7 +7,7 @@ publish = false [dependencies] anyhow = "1.0.95" -tempfile = "3.14.0" +tempfile = "3.15.0" [build-dependencies] anyhow = "1.0.95" diff --git a/tools/release-operator/Cargo.toml b/tools/release-operator/Cargo.toml index b65bb2931..e95236f2d 100644 --- a/tools/release-operator/Cargo.toml +++ b/tools/release-operator/Cargo.toml @@ -20,7 +20,7 @@ thiserror = "2.0.9" path = "../autolib" [dependencies.reqwest] -version = "0.12.11" +version = "0.12.12" features = ["blocking"] [dependencies.clap]