summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJack O'Connor <oconnor663@gmail.com>2023-07-06 13:26:08 -0700
committerJack O'Connor <oconnor663@gmail.com>2023-07-06 13:26:08 -0700
commit99af1ffc6625650ea48303dd5f80494d5608b595 (patch)
treef69da033fc52e88c4a5dec24cbf6d12cab679205
parentf7e1a7429ff7727144a67a06ac210d2831f392a2 (diff)
update constant_time_eq to v0.3.0
This bumps the MSRV of both `blake3` and `b3sum` to 1.66.1.
-rw-r--r--.github/workflows/ci.yml6
-rw-r--r--Cargo.toml2
-rw-r--r--b3sum/Cargo.lock4
3 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index d595f59..c1a88aa 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 ee39278..caa8157 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 0ebead9..55eb319 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"