-
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 #278 from str4d/release-0.3.0
Release 0.3.0
- Loading branch information
Showing
18 changed files
with
133 additions
and
104 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,15 @@ | ||
[package] | ||
authors = ["Sean Bowe <[email protected]>"] | ||
authors = [ | ||
"Sean Bowe <[email protected]>", | ||
"Jack Grigg <[email protected]>", | ||
] | ||
description = "Implementation of the BLS12-381 pairing-friendly elliptic curve construction" | ||
documentation = "https://docs.rs/bls12_381/" | ||
homepage = "https://github.com/zkcrypto/bls12_381" | ||
license = "MIT/Apache-2.0" | ||
name = "bls12_381" | ||
repository = "https://github.com/zkcrypto/bls12_381" | ||
version = "0.1.1" | ||
version = "0.2.0" | ||
edition = "2018" | ||
|
||
[package.metadata.docs.rs] | ||
|
@@ -26,18 +29,18 @@ default-features = false | |
|
||
[dependencies.ff] | ||
path = "../ff" | ||
version = "0.6" | ||
version = "0.7" | ||
default-features = false | ||
|
||
[dependencies.group] | ||
path = "../group" | ||
version = "0.6" | ||
version = "0.7" | ||
default-features = false | ||
optional = true | ||
|
||
[dependencies.pairing] | ||
path = "../pairing" | ||
version = "0.16" | ||
version = "0.17" | ||
optional = true | ||
|
||
[dependencies.rand_core] | ||
|
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,10 @@ | ||
[package] | ||
name = "ff" | ||
version = "0.6.0" | ||
authors = ["Sean Bowe <[email protected]>"] | ||
version = "0.7.0" | ||
authors = [ | ||
"Sean Bowe <[email protected]>", | ||
"Jack Grigg <[email protected]>", | ||
] | ||
description = "Library for building and interfacing with finite fields" | ||
readme = "README.md" | ||
documentation = "https://docs.rs/ff/" | ||
|
@@ -12,7 +15,7 @@ edition = "2018" | |
|
||
[dependencies] | ||
byteorder = { version = "1", default-features = false } | ||
ff_derive = { version = "0.6", path = "ff_derive", optional = true } | ||
ff_derive = { version = "0.7", path = "ff_derive", optional = true } | ||
rand_core = { version = "0.5", default-features = false } | ||
subtle = { version = "2.2.1", default-features = false, features = ["i128"] } | ||
|
||
|
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_derive" | ||
version = "0.6.0" | ||
version = "0.7.0" | ||
authors = [ | ||
"Sean Bowe <[email protected]>", | ||
"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,6 +1,6 @@ | ||
[package] | ||
name = "group" | ||
version = "0.6.0" | ||
version = "0.7.0" | ||
authors = [ | ||
"Sean Bowe <[email protected]>", | ||
"Jack Grigg <[email protected]>", | ||
|
@@ -16,7 +16,7 @@ edition = "2018" | |
|
||
[dependencies] | ||
byteorder = { version = "1", default-features = false } | ||
ff = { version = "0.6", path = "../ff" } | ||
ff = { version = "0.7", path = "../ff" } | ||
rand = "0.7" | ||
rand_xorshift = "0.2" | ||
subtle = { version = "2.2.1", default-features = false } | ||
|
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.16.0" | ||
version = "0.17.0" | ||
authors = [ | ||
"Sean Bowe <[email protected]>", | ||
"Jack Grigg <[email protected]>", | ||
|
@@ -18,8 +18,8 @@ edition ="2018" | |
|
||
[dependencies] | ||
byteorder = "1" | ||
ff = { version = "0.6", path = "../ff", features = ["derive"] } | ||
group = { version = "0.6", path = "../group" } | ||
ff = { version = "0.7", path = "../ff", features = ["derive"] } | ||
group = { version = "0.7", path = "../group" } | ||
rand_core = "0.5" | ||
subtle = "2.2.1" | ||
|
||
|
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_client_backend" | ||
description = "APIs for creating shielded Zcash light clients" | ||
version = "0.2.0" | ||
version = "0.3.0" | ||
authors = [ | ||
"Jack Grigg <[email protected]>", | ||
] | ||
|
@@ -13,16 +13,15 @@ edition = "2018" | |
|
||
[dependencies] | ||
bech32 = "0.7" | ||
bls12_381 = { version = "0.1", path = "../bls12_381" } | ||
bls12_381 = { version = "0.2", path = "../bls12_381" } | ||
bs58 = { version = "0.3", features = ["check"] } | ||
ff = { version = "0.6", path = "../ff" } | ||
group = { version = "0.6", path = "../group" } | ||
ff = { version = "0.7", path = "../ff" } | ||
group = { version = "0.7", path = "../group" } | ||
hex = "0.4" | ||
jubjub = { version = "0.3", path = "../jubjub" } | ||
pairing = { version = "0.16", path = "../pairing" } | ||
jubjub = { version = "0.4", path = "../jubjub" } | ||
protobuf = "=2.14.0" # 2.15 has MSRV of 1.44.1 | ||
subtle = "2" | ||
zcash_primitives = { version = "0.2", path = "../zcash_primitives" } | ||
zcash_primitives = { version = "0.3", path = "../zcash_primitives" } | ||
|
||
[build-dependencies] | ||
protobuf-codegen-pure = "2.14" | ||
|
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.0.0" | ||
version = "0.1.0" | ||
authors = [ | ||
"Jack Grigg <[email protected]>", | ||
] | ||
|
@@ -14,21 +14,20 @@ edition = "2018" | |
[dependencies] | ||
bech32 = "0.7" | ||
bs58 = { version = "0.3", features = ["check"] } | ||
ff = { version = "0.6", path = "../ff" } | ||
group = { version = "0.6", path = "../group" } | ||
jubjub = { version = "0.3", path = "../jubjub" } | ||
pairing = { version = "0.16", path = "../pairing" } | ||
ff = { version = "0.7", path = "../ff" } | ||
group = { version = "0.7", path = "../group" } | ||
jubjub = { version = "0.4", path = "../jubjub" } | ||
protobuf = "2" | ||
rand_core = "0.5.1" | ||
rusqlite = { version = "0.23", features = ["bundled"] } | ||
time = "0.1" | ||
zcash_client_backend = { version = "0.2", path = "../zcash_client_backend" } | ||
zcash_primitives = { version = "0.2", path = "../zcash_primitives" } | ||
zcash_client_backend = { version = "0.3", path = "../zcash_client_backend" } | ||
zcash_primitives = { version = "0.3", path = "../zcash_primitives" } | ||
|
||
[dev-dependencies] | ||
rand_core = "0.5.1" | ||
tempfile = "3" | ||
zcash_proofs = { version = "0.2", path = "../zcash_proofs" } | ||
zcash_proofs = { version = "0.3", path = "../zcash_proofs" } | ||
|
||
[features] | ||
mainnet = [] |
Oops, something went wrong.