From 743e957abb047f6a23adb3de152aea8922ed2ed5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 14 Apr 2025 05:06:40 +0000 Subject: [PATCH 1/4] build(deps): bump mozilla-actions/sccache-action Bumps the github-actions group with 1 update: [mozilla-actions/sccache-action](https://github.com/mozilla-actions/sccache-action). Updates `mozilla-actions/sccache-action` from 0.0.8 to 0.0.9 - [Release notes](https://github.com/mozilla-actions/sccache-action/releases) - [Commits](https://github.com/mozilla-actions/sccache-action/compare/v0.0.8...v0.0.9) --- updated-dependencies: - dependency-name: mozilla-actions/sccache-action dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yaml | 10 +++++----- .github/workflows/docs.yaml | 2 +- .github/workflows/tests.yaml | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index bc45e9a3c..bf11ba642 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -157,7 +157,7 @@ jobs: with: fetch-depth: 0 - name: Install sccache - uses: mozilla-actions/sccache-action@v0.0.8 + uses: mozilla-actions/sccache-action@v0.0.9 - name: Setup Environment (PR) if: ${{ github.event_name == 'pull_request' }} @@ -189,7 +189,7 @@ jobs: - uses: dtolnay/rust-toolchain@stable with: components: rustfmt - - uses: mozilla-actions/sccache-action@v0.0.8 + - uses: mozilla-actions/sccache-action@v0.0.9 - uses: taiki-e/install-action@cargo-make - run: cargo make format-check @@ -206,7 +206,7 @@ jobs: with: toolchain: nightly-2024-11-30 - name: Install sccache - uses: mozilla-actions/sccache-action@v0.0.8 + uses: mozilla-actions/sccache-action@v0.0.9 - name: Docs run: cargo doc --workspace --all-features --no-deps --document-private-items @@ -225,7 +225,7 @@ jobs: with: components: clippy - name: Install sccache - uses: mozilla-actions/sccache-action@v0.0.8 + uses: mozilla-actions/sccache-action@v0.0.9 # TODO: We have a bunch of platform-dependent code so should # probably run this job on the full platform matrix @@ -252,7 +252,7 @@ jobs: with: toolchain: ${{ env.MSRV }} - name: Install sccache - uses: mozilla-actions/sccache-action@v0.0.8 + uses: mozilla-actions/sccache-action@v0.0.9 - name: Check MSRV all features run: | diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml index f9c5e64b6..377700906 100644 --- a/.github/workflows/docs.yaml +++ b/.github/workflows/docs.yaml @@ -34,7 +34,7 @@ jobs: with: toolchain: nightly-2024-11-30 - name: Install sccache - uses: mozilla-actions/sccache-action@v0.0.8 + uses: mozilla-actions/sccache-action@v0.0.9 - name: Generate Docs run: cargo doc --workspace --all-features --no-deps diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 0acf6c8b4..41511c43f 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -69,7 +69,7 @@ jobs: tool: nextest@0.9.80 - name: Install sccache - uses: mozilla-actions/sccache-action@v0.0.8 + uses: mozilla-actions/sccache-action@v0.0.9 - name: Select features run: | @@ -199,7 +199,7 @@ jobs: } - name: Install sccache - uses: mozilla-actions/sccache-action@v0.0.8 + uses: mozilla-actions/sccache-action@v0.0.9 - uses: msys2/setup-msys2@v2 From 2d059a22b19938051bfff8ec0797798b0eac5491 Mon Sep 17 00:00:00 2001 From: Ruediger Klaehn Date: Mon, 14 Apr 2025 14:56:20 +0300 Subject: [PATCH 2/4] update crossbeam-channel to make cargo deny happy --- Cargo.lock | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6da7ac571..dd214601b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -720,9 +720,9 @@ checksum = "790eea4361631c5e7d22598ecd5723ff611904e3344ce8720784c93e3d83d40b" [[package]] name = "crossbeam-channel" -version = "0.5.14" +version = "0.5.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "06ba6d68e24814cb8de6bb986db8222d3a027d15872cabc0d18817bc3c0e4471" +checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2" dependencies = [ "crossbeam-utils", ] From 9aff1b66f3664089ed021c3a04e1cd9e911518d3 Mon Sep 17 00:00:00 2001 From: Ruediger Klaehn Date: Mon, 14 Apr 2025 14:57:05 +0300 Subject: [PATCH 3/4] clippy --- src/cli.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli.rs b/src/cli.rs index 29a594dba..5e06df84e 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -570,7 +570,7 @@ pub async fn consistency_check(blobs: &blobs::Client, verbose: u8, repair: bool) } => { print(level, entry, message); } - ConsistencyCheckProgress::Done { .. } => { + ConsistencyCheckProgress::Done => { eprintln!("Consistency check done"); } ConsistencyCheckProgress::Abort(error) => { From b72dedc4127e09b868ba59b720ec2fb7a4c6f2bb Mon Sep 17 00:00:00 2001 From: Ruediger Klaehn Date: Mon, 14 Apr 2025 15:05:29 +0300 Subject: [PATCH 4/4] Update tokio as well to get of a deny warning --- Cargo.lock | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index dd214601b..526486e43 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4845,9 +4845,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.44.0" +version = "1.44.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9975ea0f48b5aa3972bf2d888c238182458437cc2a19374b81b25cdf1023fb3a" +checksum = "e6b88822cbe49de4185e3a4cbf8321dd487cf5fe0c5c65695fef6346371e9c48" dependencies = [ "backtrace", "bytes",