Use updated RustCrypto/hashes source of sha2
This commit is contained in:
parent
efdbb8f784
commit
a7e5d37296
|
|
@ -1500,7 +1500,7 @@ dependencies = [
|
|||
[[package]]
|
||||
name = "sha2"
|
||||
version = "0.8.1"
|
||||
source = "git+https://github.com/ZcashFoundation/hashes?branch=expose-utils#c1afa054b869f26f42a1585b7855c22c206e9642"
|
||||
source = "git+https://github.com/RustCrypto/hashes?rev=30b416a#30b416ad34c3291c66a1ac1bd90c25c6fcd1d4b3"
|
||||
dependencies = [
|
||||
"block-buffer",
|
||||
"digest",
|
||||
|
|
@ -2062,7 +2062,7 @@ dependencies = [
|
|||
"ripemd160",
|
||||
"secp256k1",
|
||||
"serde",
|
||||
"sha2 0.8.1 (git+https://github.com/ZcashFoundation/hashes?branch=expose-utils)",
|
||||
"sha2 0.8.1 (git+https://github.com/RustCrypto/hashes?rev=30b416a)",
|
||||
"thiserror",
|
||||
"x25519-dalek",
|
||||
]
|
||||
|
|
|
|||
|
|
@ -18,13 +18,12 @@ rand_core = "0.5.1"
|
|||
ripemd160 = "0.8.0"
|
||||
secp256k1 = { version = "0.17.2", features = ["serde"] }
|
||||
serde = { version = "1", features = ["serde_derive"] }
|
||||
# sha2 = "0.8"
|
||||
sha2 = {git="https://github.com/RustCrypto/hashes", rev="30b416a", features=["compress"]}
|
||||
thiserror = "1"
|
||||
x25519-dalek = "0.6"
|
||||
# ZF deps
|
||||
ed25519-zebra = "0.2"
|
||||
redjubjub = "0.1"
|
||||
sha2 = {git="https://github.com/ZcashFoundation/hashes", branch = "expose-utils", features=["compress"]}
|
||||
|
||||
[dev-dependencies]
|
||||
proptest = "0.9"
|
||||
|
|
|
|||
Loading…
Reference in New Issue