-
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.
Merge pull request #289 from ebfull/release-0.4
Version bump 0.4.0 for crates
- Loading branch information
Showing
4 changed files
with
9 additions
and
9 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "zcash_client_backend" | ||
description = "APIs for creating shielded Zcash light clients" | ||
version = "0.3.0" | ||
version = "0.4.0" | ||
authors = [ | ||
"Jack Grigg <[email protected]>", | ||
] | ||
|
@@ -21,7 +21,7 @@ hex = "0.4" | |
jubjub = "0.5.1" | ||
protobuf = "2.15" | ||
subtle = "2" | ||
zcash_primitives = { version = "0.3", path = "../zcash_primitives" } | ||
zcash_primitives = { version = "0.4", path = "../zcash_primitives" } | ||
|
||
[build-dependencies] | ||
protobuf-codegen-pure = "2.15" | ||
|
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_client_sqlite" | ||
description = "An SQLite-based Zcash light client" | ||
version = "0.1.0" | ||
version = "0.2.0" | ||
authors = [ | ||
"Jack Grigg <[email protected]>", | ||
] | ||
|
@@ -21,13 +21,13 @@ protobuf = "2.15" | |
rand_core = "0.5.1" | ||
rusqlite = { version = "0.24", features = ["bundled", "time"] } | ||
time = "0.2" | ||
zcash_client_backend = { version = "0.3", path = "../zcash_client_backend" } | ||
zcash_primitives = { version = "0.3", path = "../zcash_primitives" } | ||
zcash_client_backend = { version = "0.4", path = "../zcash_client_backend" } | ||
zcash_primitives = { version = "0.4", path = "../zcash_primitives" } | ||
|
||
[dev-dependencies] | ||
rand_core = "0.5.1" | ||
tempfile = "3" | ||
zcash_proofs = { version = "0.3", path = "../zcash_proofs" } | ||
zcash_proofs = { version = "0.4", path = "../zcash_proofs" } | ||
|
||
[features] | ||
mainnet = [] |
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.3.0" | ||
version = "0.4.0" | ||
authors = [ | ||
"Jack Grigg <[email protected]>", | ||
] | ||
|
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.3.0" | ||
version = "0.4.0" | ||
authors = [ | ||
"Jack Grigg <[email protected]>", | ||
] | ||
|
@@ -27,7 +27,7 @@ lazy_static = "1" | |
minreq = { version = "2", features = ["https"], optional = true } | ||
rand_core = "0.5.1" | ||
wagyu-zcash-parameters = { version = "0.2", optional = true } | ||
zcash_primitives = { version = "0.3", path = "../zcash_primitives" } | ||
zcash_primitives = { version = "0.4", path = "../zcash_primitives" } | ||
|
||
[dev-dependencies] | ||
criterion = "0.3" | ||
|