From 5e1efc85e4c77749098d6106ab9bad3cce33117a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Mar 2024 15:39:07 +0000 Subject: [PATCH 1/2] Bump crossbeam-channel from 0.5.11 to 0.5.12 Bumps [crossbeam-channel](https://github.com/crossbeam-rs/crossbeam) from 0.5.11 to 0.5.12. - [Release notes](https://github.com/crossbeam-rs/crossbeam/releases) - [Changelog](https://github.com/crossbeam-rs/crossbeam/blob/master/CHANGELOG.md) - [Commits](https://github.com/crossbeam-rs/crossbeam/compare/crossbeam-channel-0.5.11...crossbeam-channel-0.5.12) --- updated-dependencies: - dependency-name: crossbeam-channel dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- Cargo.toml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d00be051..d617009a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -263,9 +263,9 @@ dependencies = [ [[package]] name = "crossbeam-channel" -version = "0.5.11" +version = "0.5.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "176dc175b78f56c0f321911d9c8eb2b77a78a4860b9c19db83835fea1a46649b" +checksum = "ab3db02a9c5b5121e1e42fbdb1aeb65f5e02624cc58c43f2884c6ccac0b82f95" dependencies = [ "crossbeam-utils", ] diff --git a/Cargo.toml b/Cargo.toml index 718e9fbf..f4872782 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,7 +23,7 @@ debug = false [dependencies] core_affinity = "0.8.1" -crossbeam-channel = { version = "0.5.11", optional = true } +crossbeam-channel = { version = "0.5.12", optional = true } crossbeam-deque = "0.8.5" dyn-clone = "1.0.16" log = "0.4.20" @@ -34,7 +34,7 @@ flume = { version = "0.11.0", optional = true } [dev-dependencies] criterion = {version = "0.5.1", features = ["html_reports"]} -crossbeam-channel = { version = "0.5.11"} +crossbeam-channel = { version = "0.5.12"} env_logger = "0.11.2" rand = "0.8.5" raster = {git = "https://github.com/valebes/raster.git"} From 9067017f099ea82d9b84054b0e9d191cf8174bc0 Mon Sep 17 00:00:00 2001 From: Valerio Besozzi Date: Mon, 4 Mar 2024 17:09:22 +0100 Subject: [PATCH 2/2] Change tarpaulin backend --- .github/workflows/coverage.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 2831e33a..df875050 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -14,7 +14,7 @@ jobs: - name: Generate code coverage run: | - cargo +nightly tarpaulin --verbose --engine llvm --features crossbeam --workspace --timeout 120 --out xml + cargo +nightly tarpaulin --verbose --features crossbeam --workspace --timeout 120 --out xml - name: Workaround for codecov/feedback#263 run: | git config --global --add safe.directory "$GITHUB_WORKSPACE"