2 Blakes, 2 Serious

This commit is contained in:
Deirdre Connolly 2020-03-29 03:36:15 -04:00 committed by Deirdre Connolly
parent 39278a3095
commit 145afb7bda
2 changed files with 13 additions and 0 deletions

12
Cargo.lock generated
View File

@ -161,6 +161,17 @@ dependencies = [
"constant_time_eq",
]
[[package]]
name = "blake2s_simd"
version = "0.5.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ab9e07352b829279624ceb7c64adb4f585dacdb81d35cafae81139ccd617cf44"
dependencies = [
"arrayref",
"arrayvec",
"constant_time_eq",
]
[[package]]
name = "block-buffer"
version = "0.7.3"
@ -2049,6 +2060,7 @@ name = "zebra-chain"
version = "0.1.0"
dependencies = [
"blake2b_simd",
"blake2s_simd",
"bs58",
"byteorder",
"chrono",

View File

@ -9,6 +9,7 @@ edition = "2018"
[dependencies]
blake2b_simd = "0.5.10"
blake2s_simd = "0.5.10"
bs58 = { version = "0.3", features = ["check"] }
byteorder = "1.3"
chrono = "0.4"