From 99af1ffc6625650ea48303dd5f80494d5608b595 Mon Sep 17 00:00:00 2001 From: Jack O'Connor Date: Thu, 6 Jul 2023 13:26:08 -0700 Subject: [PATCH] update constant_time_eq to v0.3.0 This bumps the MSRV of both `blake3` and `b3sum` to 1.66.1. --- .github/workflows/ci.yml | 6 +++--- Cargo.toml | 2 +- b3sum/Cargo.lock | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d595f59b..c1a88aaf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,7 +34,7 @@ jobs: # https://github.com/rust-lang/libs-team/issues/72. # This test target is here so that we notice if we accidentally bump # the MSRV, but it's not a promise that we won't bump it. - "1.60.0", + "1.66.1", ] steps: @@ -145,10 +145,10 @@ jobs: "stable", "beta", "nightly", - # The b3sum MSRV is typically higher than the blake3 crate's, because + # The b3sum MSRV is sometimes higher than the blake3 crate's, because # b3sum depends on Clap. We check in the b3sum Cargo.lock, so Clap # update shouldn't randomly break us here. - "1.64.0", + "1.66.1", ] steps: diff --git a/Cargo.toml b/Cargo.toml index ee392783..caa81573 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -84,7 +84,7 @@ features = ["rayon"] [dependencies] arrayref = "0.3.5" arrayvec = { version = "0.7.0", default-features = false } -constant_time_eq = "0.2.4" +constant_time_eq = "0.3.0" rayon = { version = "1.2.1", optional = true } cfg-if = "1.0.0" digest = { version = "0.10.1", features = [ "mac" ], optional = true } diff --git a/b3sum/Cargo.lock b/b3sum/Cargo.lock index 0ebead9c..55eb3193 100644 --- a/b3sum/Cargo.lock +++ b/b3sum/Cargo.lock @@ -181,9 +181,9 @@ checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" [[package]] name = "constant_time_eq" -version = "0.2.5" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "13418e745008f7349ec7e449155f419a61b92b58a99cc3616942b926825ec76b" +checksum = "f7144d30dcf0fafbce74250a3963025d8d52177934239851c917d29f1df280c2" [[package]] name = "crossbeam-channel"