-
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 #216 from ebfull/crate-updates
Crate updates
- Loading branch information
Showing
13 changed files
with
64 additions
and
64 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,6 +1,6 @@ | ||
[package] | ||
name = "ff" | ||
version = "0.5.2" | ||
version = "0.6.0" | ||
authors = ["Sean Bowe <[email protected]>"] | ||
description = "Library for building and interfacing with finite fields" | ||
readme = "README.md" | ||
|
@@ -12,7 +12,7 @@ edition = "2018" | |
|
||
[dependencies] | ||
byteorder = "1" | ||
ff_derive = { version = "^0.4.1", path = "ff_derive", optional = true } | ||
ff_derive = { version = "0.6", path = "ff_derive", optional = true } | ||
rand_core = "0.5" | ||
|
||
[features] | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "ff_derive" | ||
version = "0.4.1" | ||
version = "0.6.0" | ||
authors = ["Sean Bowe <[email protected]>"] | ||
description = "Procedural macro library used to build custom prime field implementations" | ||
documentation = "https://docs.rs/ff/" | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "group" | ||
version = "0.2.0" | ||
version = "0.6.0" | ||
authors = [ | ||
"Sean Bowe <[email protected]>", | ||
"Jack Grigg <[email protected]>", | ||
|
@@ -15,7 +15,7 @@ repository = "https://github.com/ebfull/group" | |
edition = "2018" | ||
|
||
[dependencies] | ||
ff = { version = "0.5.0", path = "../ff" } | ||
ff = { version = "0.6", path = "../ff" } | ||
rand = "0.7" | ||
rand_xorshift = "0.2" | ||
|
||
|
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name = "pairing" | ||
|
||
# Remember to change version string in README.md. | ||
version = "0.15.1" | ||
version = "0.16.0" | ||
authors = [ | ||
"Sean Bowe <[email protected]>", | ||
"Jack Grigg <[email protected]>", | ||
|
@@ -18,8 +18,8 @@ edition ="2018" | |
|
||
[dependencies] | ||
byteorder = "1" | ||
ff = { version = "^0.5.2", path = "../ff", features = ["derive"] } | ||
group = { version = "0.2.0", path = "../group" } | ||
ff = { version = "0.6", path = "../ff", features = ["derive"] } | ||
group = { version = "0.6", path = "../group" } | ||
rand_core = "0.5" | ||
|
||
[dev-dependencies] | ||
|
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.1.0" | ||
version = "0.2.0" | ||
authors = [ | ||
"Jack Grigg <[email protected]>", | ||
] | ||
|
@@ -13,12 +13,12 @@ edition = "2018" | |
|
||
[dependencies] | ||
bech32 = "0.7" | ||
ff = { version = "0.5.0", path = "../ff" } | ||
ff = { version = "0.6", path = "../ff" } | ||
hex = "0.3" | ||
pairing = { version = "0.15.0", path = "../pairing" } | ||
pairing = { version = "0.16", path = "../pairing" } | ||
protobuf = "2" | ||
subtle = "2" | ||
zcash_primitives = { version = "0.1.0", path = "../zcash_primitives" } | ||
zcash_primitives = { version = "0.2", path = "../zcash_primitives" } | ||
|
||
[build-dependencies] | ||
protobuf-codegen-pure = "2" | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "zcash_history" | ||
version = "0.0.1" | ||
version = "0.2.0" | ||
authors = ["NikVolf <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT/Apache-2.0" | ||
|
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.1.0" | ||
version = "0.2.0" | ||
authors = [ | ||
"Jack Grigg <[email protected]>", | ||
] | ||
|
@@ -17,12 +17,12 @@ blake2b_simd = "0.5" | |
blake2s_simd = "0.5" | ||
byteorder = "1" | ||
crypto_api_chachapoly = "0.2.1" | ||
ff = { version = "0.5.0", path = "../ff" } | ||
ff = { version = "0.6", path = "../ff" } | ||
fpe = "0.2" | ||
hex = "0.3" | ||
lazy_static = "1" | ||
log = "0.4" | ||
pairing = { version = "0.15.0", path = "../pairing" } | ||
pairing = { version = "0.16", path = "../pairing" } | ||
rand = "0.7" | ||
rand_core = "0.5.1" | ||
ripemd160 = { version = "0.8", optional = true } | ||
|
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.1.0" | ||
version = "0.2.0" | ||
authors = [ | ||
"Jack Grigg <[email protected]>", | ||
] | ||
|
@@ -12,14 +12,14 @@ license = "MIT OR Apache-2.0" | |
edition = "2018" | ||
|
||
[dependencies] | ||
bellman = { version = "0.2.0", path = "../bellman", default-features = false, features = ["groth16"] } | ||
bellman = { version = "0.6", path = "../bellman", default-features = false, features = ["groth16"] } | ||
blake2b_simd = "0.5" | ||
byteorder = "1" | ||
directories = { version = "1", optional = true } | ||
ff = { version = "0.5.0", path = "../ff" } | ||
pairing = { version = "0.15.0", path = "../pairing" } | ||
ff = { version = "0.6", path = "../ff" } | ||
pairing = { version = "0.16", path = "../pairing" } | ||
rand_core = "0.5.1" | ||
zcash_primitives = { version = "0.1.0", path = "../zcash_primitives" } | ||
zcash_primitives = { version = "0.2", path = "../zcash_primitives" } | ||
|
||
[dev-dependencies] | ||
rand_xorshift = "0.2" | ||
|