From 55fa366730bb71429dd6e11c913a06e3ab42fe66 Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Sat, 22 Aug 2020 11:31:01 +0100 Subject: [PATCH] ff 0.7.0 --- bellman/Cargo.toml | 2 +- bls12_381/Cargo.toml | 2 +- ff/Cargo.toml | 9 ++++++--- ff/README.md | 4 ++-- ff/ff_derive/Cargo.toml | 2 +- group/Cargo.toml | 2 +- jubjub/Cargo.toml | 2 +- pairing/Cargo.toml | 2 +- zcash_client_backend/Cargo.toml | 2 +- zcash_client_sqlite/Cargo.toml | 2 +- zcash_primitives/Cargo.toml | 2 +- zcash_proofs/Cargo.toml | 2 +- 12 files changed, 18 insertions(+), 15 deletions(-) diff --git a/bellman/Cargo.toml b/bellman/Cargo.toml index 45fd968ff..bfddabf3c 100644 --- a/bellman/Cargo.toml +++ b/bellman/Cargo.toml @@ -12,7 +12,7 @@ edition = "2018" [dependencies] bit-vec = "0.6" blake2s_simd = "0.5" -ff = { version = "0.6", path = "../ff" } +ff = { version = "0.7", path = "../ff" } futures = "0.1" futures-cpupool = { version = "0.1", optional = true } group = { version = "0.6", path = "../group" } diff --git a/bls12_381/Cargo.toml b/bls12_381/Cargo.toml index 1799294f2..8fa1850c9 100644 --- a/bls12_381/Cargo.toml +++ b/bls12_381/Cargo.toml @@ -26,7 +26,7 @@ default-features = false [dependencies.ff] path = "../ff" -version = "0.6" +version = "0.7" default-features = false [dependencies.group] diff --git a/ff/Cargo.toml b/ff/Cargo.toml index 01cc6c651..e081e84c1 100644 --- a/ff/Cargo.toml +++ b/ff/Cargo.toml @@ -1,7 +1,10 @@ [package] name = "ff" -version = "0.6.0" -authors = ["Sean Bowe "] +version = "0.7.0" +authors = [ + "Sean Bowe ", + "Jack Grigg ", +] 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"] } diff --git a/ff/README.md b/ff/README.md index 57ef693f3..4fbe19028 100644 --- a/ff/README.md +++ b/ff/README.md @@ -12,7 +12,7 @@ Add the `ff` crate to your `Cargo.toml`: ```toml [dependencies] -ff = "0.5" +ff = "0.7" ``` The `ff` crate contains `Field`, `PrimeField`, `PrimeFieldRepr` and `SqrtField` traits. @@ -29,7 +29,7 @@ First, enable the `derive` crate feature: ```toml [dependencies] -ff = { version = "0.4", features = ["derive"] } +ff = { version = "0.7", features = ["derive"] } ``` And then use the macro like so: diff --git a/ff/ff_derive/Cargo.toml b/ff/ff_derive/Cargo.toml index 89a45b315..e1e26bc56 100644 --- a/ff/ff_derive/Cargo.toml +++ b/ff/ff_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ff_derive" -version = "0.6.0" +version = "0.7.0" authors = [ "Sean Bowe ", "Jack Grigg ", diff --git a/group/Cargo.toml b/group/Cargo.toml index ec5dff86a..40b851eb6 100644 --- a/group/Cargo.toml +++ b/group/Cargo.toml @@ -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 } diff --git a/jubjub/Cargo.toml b/jubjub/Cargo.toml index 5955e6cb7..f7a5c5904 100644 --- a/jubjub/Cargo.toml +++ b/jubjub/Cargo.toml @@ -24,7 +24,7 @@ default-features = false [dependencies.ff] path = "../ff" -version = "0.6" +version = "0.7" default-features = false [dependencies.group] diff --git a/pairing/Cargo.toml b/pairing/Cargo.toml index d24e2d0ed..4686ca2e6 100644 --- a/pairing/Cargo.toml +++ b/pairing/Cargo.toml @@ -18,7 +18,7 @@ edition ="2018" [dependencies] byteorder = "1" -ff = { version = "0.6", path = "../ff", features = ["derive"] } +ff = { version = "0.7", path = "../ff", features = ["derive"] } group = { version = "0.6", path = "../group" } rand_core = "0.5" subtle = "2.2.1" diff --git a/zcash_client_backend/Cargo.toml b/zcash_client_backend/Cargo.toml index 8ceeb6e53..942aabe5c 100644 --- a/zcash_client_backend/Cargo.toml +++ b/zcash_client_backend/Cargo.toml @@ -15,7 +15,7 @@ edition = "2018" bech32 = "0.7" bls12_381 = { version = "0.1", path = "../bls12_381" } bs58 = { version = "0.3", features = ["check"] } -ff = { version = "0.6", path = "../ff" } +ff = { version = "0.7", path = "../ff" } group = { version = "0.6", path = "../group" } hex = "0.4" jubjub = { version = "0.3", path = "../jubjub" } diff --git a/zcash_client_sqlite/Cargo.toml b/zcash_client_sqlite/Cargo.toml index 61467a426..87e7bacca 100644 --- a/zcash_client_sqlite/Cargo.toml +++ b/zcash_client_sqlite/Cargo.toml @@ -14,7 +14,7 @@ edition = "2018" [dependencies] bech32 = "0.7" bs58 = { version = "0.3", features = ["check"] } -ff = { version = "0.6", path = "../ff" } +ff = { version = "0.7", path = "../ff" } group = { version = "0.6", path = "../group" } jubjub = { version = "0.3", path = "../jubjub" } pairing = { version = "0.16", path = "../pairing" } diff --git a/zcash_primitives/Cargo.toml b/zcash_primitives/Cargo.toml index bef7f4edc..f8b03933a 100644 --- a/zcash_primitives/Cargo.toml +++ b/zcash_primitives/Cargo.toml @@ -22,7 +22,7 @@ bls12_381 = { version = "0.1", path = "../bls12_381" } byteorder = "1" crypto_api_chachapoly = "0.4" equihash = { version = "0.1", path = "../components/equihash" } -ff = { version = "0.6", path = "../ff" } +ff = { version = "0.7", path = "../ff" } fpe = "0.3" group = { version = "0.6", path = "../group" } hex = "0.4" diff --git a/zcash_proofs/Cargo.toml b/zcash_proofs/Cargo.toml index 74567b460..7d851681b 100644 --- a/zcash_proofs/Cargo.toml +++ b/zcash_proofs/Cargo.toml @@ -20,7 +20,7 @@ blake2b_simd = "0.5" bls12_381 = { version = "0.1", path = "../bls12_381" } byteorder = "1" directories = { version = "3", optional = true } -ff = { version = "0.6", path = "../ff" } +ff = { version = "0.7", path = "../ff" } group = { version = "0.6", path = "../group" } jubjub = { version = "0.3", path = "../jubjub" } lazy_static = "1"