chore: bump blake3 from 0.3.8 to 1.0.0 (#18908)

* chore: bump blake3 from 0.3.8 to 1.0.0

Bumps [blake3](https://github.com/BLAKE3-team/BLAKE3) from 0.3.8 to 1.0.0.
- [Release notes](https://github.com/BLAKE3-team/BLAKE3/releases)
- [Commits](https://github.com/BLAKE3-team/BLAKE3/compare/0.3.8...1.0.0)

---
updated-dependencies:
- dependency-name: blake3
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* Make versions consistent

* Enable new feature

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Tyera Eulberg <tyera@solana.com>
This commit is contained in:
dependabot[bot]
2021-07-27 17:55:21 -06:00
committed by GitHub
parent 72e374d0f3
commit 14f0ce850d
6 changed files with 58 additions and 16 deletions

View File

@ -75,6 +75,12 @@ version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cff77d8686867eceff3105329d4698d96c2391c176d5d03adc90c7389162b5b8"
[[package]]
name = "arrayvec"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "be4dc07131ffa69b8072d35f5007352af944213cde02545e2103680baed38fcd"
[[package]]
name = "ascii"
version = "0.9.3"
@ -169,7 +175,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b64485778c4f16a6a5a9d335e80d449ac6c70cdd6a06d2af18a6f6f775a125b3"
dependencies = [
"arrayref",
"arrayvec",
"arrayvec 0.5.1",
"cc",
"cfg-if 0.1.10",
"constant_time_eq",
@ -177,6 +183,21 @@ dependencies = [
"digest 0.9.0",
]
[[package]]
name = "blake3"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dcd555c66291d5f836dbb6883b48660ece810fe25a31f3bdfb911945dff2691f"
dependencies = [
"arrayref",
"arrayvec 0.7.1",
"cc",
"cfg-if 1.0.0",
"constant_time_eq",
"crypto-mac 0.11.0",
"digest 0.9.0",
]
[[package]]
name = "block-buffer"
version = "0.9.0"
@ -2711,7 +2732,7 @@ dependencies = [
name = "solana-bpf-rust-sha"
version = "1.8.0"
dependencies = [
"blake3",
"blake3 1.0.0",
"solana-program 1.8.0",
]
@ -3023,7 +3044,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3bfe6a5dfc5372c0a946018ecdd8115e38af78cea8275bac48cf3d105c6b1fb3"
dependencies = [
"bincode",
"blake3",
"blake3 0.3.8",
"borsh",
"borsh-derive",
"bs58 0.3.1",
@ -3056,7 +3077,7 @@ name = "solana-program"
version = "1.8.0"
dependencies = [
"bincode",
"blake3",
"blake3 1.0.0",
"borsh",
"borsh-derive",
"bs58 0.4.0",
@ -3141,7 +3162,7 @@ version = "1.8.0"
dependencies = [
"arrayref",
"bincode",
"blake3",
"blake3 1.0.0",
"bv",
"byteorder 1.4.3",
"bzip2",

View File

@ -10,7 +10,7 @@ documentation = "https://docs.rs/solana-bpf-rust-sha"
edition = "2018"
[dependencies]
blake3 = "0.3.7"
blake3 = "1.0.0"
solana-program = { path = "../../../../sdk/program", version = "=1.8.0" }
[lib]