From d6c25d5188428fb268d235d47ecc65ee459665cd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 5 Mar 2024 02:26:51 +0000 Subject: [PATCH 1/2] build(deps): bump crc32fast from 1.3.2 to 1.4.0 Bumps [crc32fast](https://github.com/srijs/rust-crc32fast) from 1.3.2 to 1.4.0. - [Commits](https://github.com/srijs/rust-crc32fast/compare/v1.3.2...v1.4.0) --- updated-dependencies: - dependency-name: crc32fast dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- services/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 878b5ed..bb91a88 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -557,9 +557,9 @@ checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5" [[package]] name = "crc32fast" -version = "1.3.2" +version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" +checksum = "b3855a8a784b474f333699ef2bbca9db2c4a1f6d9088a90a2d25b1eb53111eaa" dependencies = [ "cfg-if", ] diff --git a/services/Cargo.toml b/services/Cargo.toml index a58034a..b37d146 100644 --- a/services/Cargo.toml +++ b/services/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" [dependencies] anyhow = "1.0.71" async-trait = "0.1.68" -crc32fast = { version = "1.3.2", features = ["nightly"] } +crc32fast = { version = "1.4.0", features = ["nightly"] } deadqueue = { version = "0.2.4", default-features = false, features = ["unlimited"] } futures-util = "0.3.28" goval = { package = "protobuf", path = "../protobuf"} From 2563ada6bc444d60277651ad3103289721e4d0e1 Mon Sep 17 00:00:00 2001 From: PotentialStyx <62217716+PotentialStyx@users.noreply.github.com> Date: Sat, 13 Apr 2024 17:35:44 -0700 Subject: [PATCH 2/2] build: Update rust nightly version This fixes crc32fast 1.4.0 --- .github/workflows/ci.yml | 4 ++-- rust-toolchain.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3735309..1010b37 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,7 +25,7 @@ "with": { "components": "clippy,rustc-codegen-cranelift", - "toolchain": "nightly-2024-01-22", + "toolchain": "nightly-2024-04-10", }, }, { @@ -110,7 +110,7 @@ "with": { "components": "clippy", - "toolchain": "nightly-2024-01-22", + "toolchain": "nightly-2024-04-10", }, }, { diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 525e084..1c9a3ce 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,2 +1,2 @@ [toolchain] -channel = "nightly-2024-01-22" +channel = "nightly-2024-04-10"