From 04ee444a16a952613068d6f3338bd60000d7ec5f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 10 Mar 2025 13:00:25 +0000 Subject: [PATCH] Bump the cargo group with 5 updates Bumps the cargo group with 5 updates: | Package | From | To | | --- | --- | --- | | [spade](https://github.com/Stoeoef/spade) | `2.13.0` | `2.13.1` | | [semver](https://github.com/dtolnay/semver) | `1.0.25` | `1.0.26` | | [serde](https://github.com/serde-rs/serde) | `1.0.218` | `1.0.219` | | [tokio](https://github.com/tokio-rs/tokio) | `1.43.0` | `1.44.0` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.17.1` | `3.18.0` | Updates `spade` from 2.13.0 to 2.13.1 - [Changelog](https://github.com/Stoeoef/spade/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stoeoef/spade/commits) Updates `semver` from 1.0.25 to 1.0.26 - [Release notes](https://github.com/dtolnay/semver/releases) - [Commits](https://github.com/dtolnay/semver/compare/1.0.25...1.0.26) Updates `serde` from 1.0.218 to 1.0.219 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.218...v1.0.219) Updates `tokio` from 1.43.0 to 1.44.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.43.0...tokio-1.44.0) Updates `tempfile` from 3.17.1 to 3.18.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.17.1...v3.18.0) --- updated-dependencies: - dependency-name: spade dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo - dependency-name: semver dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cargo - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cargo ... Signed-off-by: dependabot[bot] --- Cargo.lock | 80 +++++++++++++++++++++---------- crates/fj-core/Cargo.toml | 2 +- tools/autolib/Cargo.toml | 2 +- tools/automator/Cargo.toml | 6 +-- tools/export-validator/Cargo.toml | 2 +- tools/release-operator/Cargo.toml | 4 +- 6 files changed, 63 insertions(+), 33 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ac6862151..332465c46 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -412,7 +412,7 @@ dependencies = [ "bitflags 2.6.0", "log", "polling", - "rustix", + "rustix 0.38.42", "slab", "thiserror 1.0.69", ] @@ -424,7 +424,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "95a66a987056935f7efce4ab5668920b5d0dac4a7c99991a67395f13702ddd20" dependencies = [ "calloop", - "rustix", + "rustix 0.38.42", "wayland-backend", "wayland-client", ] @@ -1009,6 +1009,12 @@ version = "1.0.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" +[[package]] +name = "foldhash" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a0d2fde1f7b3d48b8395d5f2de76c18a528bd6a9cdde438df747bfcba3e05d6f" + [[package]] name = "foreign-types" version = "0.3.2" @@ -1316,6 +1322,11 @@ name = "hashbrown" version = "0.15.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289" +dependencies = [ + "allocator-api2", + "equivalent", + "foldhash", +] [[package]] name = "heapless" @@ -1812,7 +1823,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34" dependencies = [ "cfg-if", - "windows-targets 0.48.5", + "windows-targets 0.52.6", ] [[package]] @@ -1838,6 +1849,12 @@ version = "0.4.14" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89" +[[package]] +name = "linux-raw-sys" +version = "0.9.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6db9c683daf087dc577b7506e9695b3d556a9f3849903fa28186283afd6809e9" + [[package]] name = "litemap" version = "0.7.4" @@ -2675,7 +2692,7 @@ dependencies = [ "concurrent-queue", "hermit-abi", "pin-project-lite", - "rustix", + "rustix 0.38.42", "tracing", "windows-sys 0.59.0", ] @@ -2984,7 +3001,20 @@ dependencies = [ "bitflags 2.6.0", "errno", "libc", - "linux-raw-sys", + "linux-raw-sys 0.4.14", + "windows-sys 0.59.0", +] + +[[package]] +name = "rustix" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dade4812df5c384711475be5fcd8c162555352945401aed22a35bffeab61f657" +dependencies = [ + "bitflags 2.6.0", + "errno", + "libc", + "linux-raw-sys 0.9.2", "windows-sys 0.59.0", ] @@ -3155,27 +3185,27 @@ dependencies = [ [[package]] name = "semver" -version = "1.0.25" +version = "1.0.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f79dfe2d285b0488816f30e700a7438c5a73d816b5b7d3ac72fbc48b0d185e03" +checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0" dependencies = [ "serde", ] [[package]] name = "serde" -version = "1.0.218" +version = "1.0.219" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e8dfc9d19bdbf6d17e22319da49161d5d0108e4188e8b680aef6299eed22df60" +checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.218" +version = "1.0.219" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f09503e191f4e797cb8aac08e9a4a4695c5edf6a2e70e376d961ddd5c969f82b" +checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00" dependencies = [ "proc-macro2", "quote", @@ -3308,7 +3338,7 @@ dependencies = [ "libc", "log", "memmap2", - "rustix", + "rustix 0.38.42", "thiserror 1.0.69", "wayland-backend", "wayland-client", @@ -3369,11 +3399,11 @@ dependencies = [ [[package]] name = "spade" -version = "2.13.0" +version = "2.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8a7f89cb9a80ac939dedb9ad42720cbe112424b6f6597a2a2e9c5e5b684cd4f7" +checksum = "1ece03ff43cd2a9b57ebf776ea5e78bd30b3b4185a619f041079f4109f385034" dependencies = [ - "hashbrown 0.14.5", + "hashbrown 0.15.2", "num-traits", "robust", "smallvec", @@ -3496,15 +3526,15 @@ dependencies = [ [[package]] name = "tempfile" -version = "3.17.1" +version = "3.18.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "22e5a0acb1f3f55f65cc4a866c361b2fb2a0ff6366785ae6fbb5f85df07ba230" +checksum = "2c317e0a526ee6120d8dabad239c8dadca62b24b6f168914bbbc8e2fb1f0e567" dependencies = [ "cfg-if", "fastrand", "getrandom 0.3.1", "once_cell", - "rustix", + "rustix 1.0.1", "windows-sys 0.59.0", ] @@ -3656,9 +3686,9 @@ dependencies = [ [[package]] name = "tokio" -version = "1.43.0" +version = "1.44.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3d61fa4ffa3de412bfea335c6ecff681de2b609ba3c77ef3e00e521813a9ed9e" +checksum = "9975ea0f48b5aa3972bf2d888c238182458437cc2a19374b81b25cdf1023fb3a" dependencies = [ "backtrace", "bytes", @@ -4070,7 +4100,7 @@ checksum = "056535ced7a150d45159d3a8dc30f91a2e2d588ca0b23f70e56033622b8016f6" dependencies = [ "cc", "downcast-rs", - "rustix", + "rustix 0.38.42", "scoped-tls", "smallvec", "wayland-sys", @@ -4083,7 +4113,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b66249d3fc69f76fd74c82cc319300faa554e9d865dab1f7cd66cc20db10b280" dependencies = [ "bitflags 2.6.0", - "rustix", + "rustix 0.38.42", "wayland-backend", "wayland-scanner", ] @@ -4105,7 +4135,7 @@ version = "0.31.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "32b08bc3aafdb0035e7fe0fdf17ba0c09c268732707dca4ae098f60cb28c9e4c" dependencies = [ - "rustix", + "rustix 0.38.42", "wayland-client", "xcursor", ] @@ -4666,7 +4696,7 @@ dependencies = [ "pin-project", "raw-window-handle", "redox_syscall 0.4.1", - "rustix", + "rustix 0.38.42", "sctk-adwaita", "smithay-client-toolkit", "smol_str", @@ -4738,7 +4768,7 @@ dependencies = [ "libc", "libloading", "once_cell", - "rustix", + "rustix 0.38.42", "x11rb-protocol", ] diff --git a/crates/fj-core/Cargo.toml b/crates/fj-core/Cargo.toml index 64d2611c6..b8210c12b 100644 --- a/crates/fj-core/Cargo.toml +++ b/crates/fj-core/Cargo.toml @@ -19,7 +19,7 @@ fj-math.workspace = true itertools = "0.14.0" parking_lot = "0.12.3" robust = "1.1.0" -spade = "2.13.0" +spade = "2.13.1" thiserror = "2.0.12" type-map = "0.5.0" diff --git a/tools/autolib/Cargo.toml b/tools/autolib/Cargo.toml index 583e25e46..6cfed0ebd 100644 --- a/tools/autolib/Cargo.toml +++ b/tools/autolib/Cargo.toml @@ -7,4 +7,4 @@ edition = "2021" anyhow = "1.0.97" log = "0.4.26" regex = "1.11.1" -semver = "1.0.25" +semver = "1.0.26" diff --git a/tools/automator/Cargo.toml b/tools/automator/Cargo.toml index ba13d6b02..e88057204 100644 --- a/tools/automator/Cargo.toml +++ b/tools/automator/Cargo.toml @@ -9,8 +9,8 @@ anyhow = "1.0.97" chrono = "0.4.40" map-macro = "0.3.0" octocrab = "0.43.0" -semver = "1.0.25" -serde = "1.0.218" +semver = "1.0.26" +serde = "1.0.219" serde_json = "1.0.140" tracing = "0.1.41" url = "2.5.4" @@ -23,7 +23,7 @@ version = "4.5.31" features = ["derive"] [dependencies.tokio] -version = "1.43.0" +version = "1.44.0" features = ["full"] [dependencies.tracing-subscriber] diff --git a/tools/export-validator/Cargo.toml b/tools/export-validator/Cargo.toml index 94cd5f68d..d46f7c02d 100644 --- a/tools/export-validator/Cargo.toml +++ b/tools/export-validator/Cargo.toml @@ -7,7 +7,7 @@ publish = false [dependencies] anyhow = "1.0.97" -tempfile = "3.17.1" +tempfile = "3.18.0" [build-dependencies] anyhow = "1.0.97" diff --git a/tools/release-operator/Cargo.toml b/tools/release-operator/Cargo.toml index ac272065e..c70a06e7a 100644 --- a/tools/release-operator/Cargo.toml +++ b/tools/release-operator/Cargo.toml @@ -12,7 +12,7 @@ cmd_lib = "1.9.5" env_logger = "0.11.6" log = "0.4.26" secstr = "0.5.0" -semver = "1.0.25" +semver = "1.0.26" serde_json = "1.0.140" thiserror = "2.0.12" @@ -29,5 +29,5 @@ features = ["std", "derive", "env"] default-features = false [dependencies.serde] -version = "1.0.218" +version = "1.0.219" features = ["derive"]