-
Notifications
You must be signed in to change notification settings - Fork 251
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update zcash_primitives to orchard 0.3; release zcash_primitives and …
…zcash_proofs 0.8.
- Loading branch information
Showing
10 changed files
with
22 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "zcash_primitives" | ||
description = "Rust implementations of the Zcash primitives" | ||
version = "0.7.0" | ||
version = "0.8.0" | ||
authors = [ | ||
"Jack Grigg <[email protected]>", | ||
"Kris Nuttycombe <[email protected]>" | ||
|
@@ -38,7 +38,7 @@ jubjub = "0.9" | |
lazy_static = "1" | ||
memuse = "0.2.1" | ||
nonempty = "0.7" | ||
orchard = "0.2" | ||
orchard = "0.3" | ||
proptest = { version = "1.0.0", optional = true } | ||
rand = "0.8" | ||
rand_core = "0.6" | ||
|
@@ -58,7 +58,7 @@ features = ["pre-zip-212"] | |
criterion = "0.3" | ||
proptest = "1.0.0" | ||
rand_xorshift = "0.3" | ||
orchard = { version = "0.2", features = ["test-dependencies"] } | ||
orchard = { version = "0.3", features = ["test-dependencies"] } | ||
|
||
[target.'cfg(unix)'.dev-dependencies] | ||
pprof = { version = "0.9", features = ["criterion", "flamegraph"] } # MSRV 1.56 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "zcash_proofs" | ||
description = "Zcash zk-SNARK circuits and proving APIs" | ||
version = "0.7.1" | ||
version = "0.8.0" | ||
authors = [ | ||
"Jack Grigg <[email protected]>", | ||
] | ||
|
@@ -30,7 +30,7 @@ rand_core = "0.6" | |
redjubjub = "0.5" | ||
tracing = "0.1" | ||
wagyu-zcash-parameters = { version = "0.2", optional = true } | ||
zcash_primitives = { version = "0.7", path = "../zcash_primitives" } | ||
zcash_primitives = { version = "0.8", path = "../zcash_primitives" } | ||
|
||
[dev-dependencies] | ||
criterion = "0.3" | ||
|