From 4119e696abcb4926ca40e2a5914377dab331f6c3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 12 Mar 2024 07:09:54 +0000 Subject: [PATCH 1/2] Bump thiserror from 1.0.57 to 1.0.58 Bumps [thiserror](https://github.com/dtolnay/thiserror) from 1.0.57 to 1.0.58. - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.57...1.0.58) --- updated-dependencies: - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 8 ++++---- Cargo.toml | 2 +- windows-capture-python/Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 33ef112..ffe242e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -264,18 +264,18 @@ checksum = "e1fc403891a21bcfb7c37834ba66a547a8f402146eba7265b5a6d88059c9ff2f" [[package]] name = "thiserror" -version = "1.0.57" +version = "1.0.58" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e45bcbe8ed29775f228095caf2cd67af7a4ccf756ebff23a306bf3e8b47b24b" +checksum = "03468839009160513471e86a034bb2c5c0e4baae3b43f79ffc55c4a5427b3297" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.57" +version = "1.0.58" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a953cb265bef375dae3de6663da4d3804eee9682ea80d8e2542529b73c531c81" +checksum = "c61f3ba182994efc43764a46c018c347bc492c79f024e705f46567b418f6d4f7" dependencies = [ "proc-macro2", "quote", diff --git a/Cargo.toml b/Cargo.toml index f9ff48b..8decb31 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -51,7 +51,7 @@ parking_lot = "0.12.1" rayon = "1.8.1" # Error handling -thiserror = "1.0.57" +thiserror = "1.0.58" [package.metadata.docs.rs] default-target = "x86_64-pc-windows-msvc" diff --git a/windows-capture-python/Cargo.toml b/windows-capture-python/Cargo.toml index 04dc93e..611dd5a 100644 --- a/windows-capture-python/Cargo.toml +++ b/windows-capture-python/Cargo.toml @@ -25,5 +25,5 @@ pyo3 = { version = "0.20.3", features = [ "extension-module", "auto-initialize", ] } -thiserror = "1.0.57" +thiserror = "1.0.58" windows-capture = { path = ".." } From 408ada0390f1e000b5a9a84cd72a30bca440574c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 25 Mar 2024 07:40:26 +0000 Subject: [PATCH 2/2] Bump rayon from 1.9.0 to 1.10.0 Bumps [rayon](https://github.com/rayon-rs/rayon) from 1.9.0 to 1.10.0. - [Changelog](https://github.com/rayon-rs/rayon/blob/main/RELEASES.md) - [Commits](https://github.com/rayon-rs/rayon/compare/rayon-core-v1.9.0...rayon-core-v1.10.0) --- updated-dependencies: - dependency-name: rayon dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 33ef112..65c9fd0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -206,9 +206,9 @@ dependencies = [ [[package]] name = "rayon" -version = "1.9.0" +version = "1.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e4963ed1bc86e4f3ee217022bd855b297cef07fb9eac5dfa1f788b220b49b3bd" +checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa" dependencies = [ "either", "rayon-core", diff --git a/Cargo.toml b/Cargo.toml index f9ff48b..385d831 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -48,7 +48,7 @@ windows = { version = "0.54.0", features = [ parking_lot = "0.12.1" # Multithreading -rayon = "1.8.1" +rayon = "1.10.0" # Error handling thiserror = "1.0.57"