Pin blake3 version

This commit is contained in:
Filip Tibell 2024-06-23 12:57:16 +02:00
parent f94fbc685a
commit 997653eb4a
No known key found for this signature in database
2 changed files with 3 additions and 3 deletions

4
Cargo.lock generated
View file

@ -305,9 +305,9 @@ dependencies = [
[[package]] [[package]]
name = "blake3" name = "blake3"
version = "1.5.1" version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "30cca6d3674597c30ddf2c587bf8d9d65c9a84d2326d941cc79c9842dfe0ef52" checksum = "0231f06152bf547e9c2b5194f247cd97aacf6dcd8b15d8e5ec0663f64580da87"
dependencies = [ dependencies = [
"arrayref", "arrayref",
"arrayvec 0.7.4", "arrayvec 0.7.4",

View file

@ -37,7 +37,7 @@ sha2 = "0.10.8"
sha3 = "0.10.8" sha3 = "0.10.8"
# This feature MIGHT break due to the unstable nature of the digest crate. # This feature MIGHT break due to the unstable nature of the digest crate.
# Check before updating it. # 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 = [ tokio = { version = "1", default-features = false, features = [
"rt", "rt",