From 997653eb4a9f78e2105a0fa9b6d5b8f90aa24931 Mon Sep 17 00:00:00 2001 From: Filip Tibell Date: Sun, 23 Jun 2024 12:57:16 +0200 Subject: [PATCH] Pin blake3 version --- Cargo.lock | 4 ++-- crates/lune-std-serde/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 280cf5e..a26d972 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -305,9 +305,9 @@ dependencies = [ [[package]] name = "blake3" -version = "1.5.1" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "30cca6d3674597c30ddf2c587bf8d9d65c9a84d2326d941cc79c9842dfe0ef52" +checksum = "0231f06152bf547e9c2b5194f247cd97aacf6dcd8b15d8e5ec0663f64580da87" dependencies = [ "arrayref", "arrayvec 0.7.4", diff --git a/crates/lune-std-serde/Cargo.toml b/crates/lune-std-serde/Cargo.toml index dddbaf6..98a8f44 100644 --- a/crates/lune-std-serde/Cargo.toml +++ b/crates/lune-std-serde/Cargo.toml @@ -37,7 +37,7 @@ sha2 = "0.10.8" sha3 = "0.10.8" # This feature MIGHT break due to the unstable nature of the digest crate. # Check before updating it. -blake3 = { version = "1.5.0", features = ["traits-preview"] } +blake3 = { version = "=1.5.0", features = ["traits-preview"] } tokio = { version = "1", default-features = false, features = [ "rt",