From 3ce50be6441c20157fc8078767dfc2381aeff0b2 Mon Sep 17 00:00:00 2001 From: Shun Sakai Date: Thu, 25 Apr 2024 07:39:35 +0900 Subject: [PATCH] Bump MSRV of `blake3` to 1.72.0 This is because the MSRV of `zeroize` v1.8.0 is 1.72.0. --- .github/workflows/ci.yml | 2 +- Cargo.toml | 2 +- test_vectors/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e93ecb383..58d2c39d6 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.66.1", + "1.72.0", ] steps: diff --git a/Cargo.toml b/Cargo.toml index 14b1d6569..cf914807b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ license = "CC0-1.0 OR Apache-2.0" documentation = "https://docs.rs/blake3" readme = "README.md" edition = "2021" -rust-version = "1.66.1" +rust-version = "1.72.0" [features] default = ["std"] diff --git a/test_vectors/Cargo.toml b/test_vectors/Cargo.toml index 3db2bb66c..444178418 100644 --- a/test_vectors/Cargo.toml +++ b/test_vectors/Cargo.toml @@ -2,7 +2,7 @@ name = "test_vectors" version = "0.0.0" edition = "2021" -rust-version = "1.66.1" +rust-version = "1.72.0" [features] neon = ["blake3/neon"]