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