From 3ceeb33c25ac2b6a509bf933df5576d10ac3a55c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 Mar 2023 02:58:46 +0000 Subject: [PATCH] Bump rayon-core from 1.10.2 to 1.11.0 Bumps [rayon-core](https://github.com/rayon-rs/rayon) from 1.10.2 to 1.11.0. - [Release notes](https://github.com/rayon-rs/rayon/releases) - [Changelog](https://github.com/rayon-rs/rayon/blob/master/RELEASES.md) - [Commits](https://github.com/rayon-rs/rayon/compare/rayon-core-v1.10.2...rayon-core-v1.11.0) --- updated-dependencies: - dependency-name: rayon-core dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- asyncgit/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8e7f06b4..586a4dfa 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1453,9 +1453,9 @@ dependencies = [ [[package]] name = "rayon-core" -version = "1.10.2" +version = "1.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "356a0625f1954f730c0201cdab48611198dc6ce21f4acff55089b5a78e6e835b" +checksum = "4b8f95bd6966f5c87776639160a66bd8ab9895d9d4ab01ddba9fc60661aebe8d" dependencies = [ "crossbeam-channel", "crossbeam-deque", diff --git a/Cargo.toml b/Cargo.toml index d1e0cc80..5d893d9a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -41,7 +41,7 @@ log = "0.4" notify = "5.1" notify-debouncer-mini = "0.2" once_cell = "1" -rayon-core = "1.10" +rayon-core = "1.11" ron = "0.8" scopeguard = "1.1" scopetime = { path = "./scopetime", version = "0.1" } diff --git a/asyncgit/Cargo.toml b/asyncgit/Cargo.toml index cbc6e3d1..08cf0cc0 100644 --- a/asyncgit/Cargo.toml +++ b/asyncgit/Cargo.toml @@ -20,7 +20,7 @@ log = "0.4" # git2 = { git="https://github.com/extrawurst/git2-rs.git", rev="fc13dcc", features = ["vendored-openssl"]} # pinning to vendored openssl, using the git2 feature this gets lost with new resolver openssl-sys = { version = '0.9', features = ["vendored"], optional = true } -rayon-core = "1.10" +rayon-core = "1.11" scopetime = { path = "../scopetime", version = "0.1" } serde = { version = "1.0", features = ["derive"] } shellexpand = "3.0"