This commit is contained in:
Jack Grigg 2020-08-22 11:31:01 +01:00
parent 9bfb935a6e
commit 55fa366730
12 changed files with 18 additions and 15 deletions

View File

@ -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" }

View File

@ -26,7 +26,7 @@ default-features = false
[dependencies.ff]
path = "../ff"
version = "0.6"
version = "0.7"
default-features = false
[dependencies.group]

View File

@ -1,7 +1,10 @@
[package]
name = "ff"
version = "0.6.0"
authors = ["Sean Bowe <ewillbefull@gmail.com>"]
version = "0.7.0"
authors = [
"Sean Bowe <ewillbefull@gmail.com>",
"Jack Grigg <thestr4d@gmail.com>",
]
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"] }

View File

@ -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:

View File

@ -1,6 +1,6 @@
[package]
name = "ff_derive"
version = "0.6.0"
version = "0.7.0"
authors = [
"Sean Bowe <ewillbefull@gmail.com>",
"Jack Grigg <thestr4d@gmail.com>",

View File

@ -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 }

View File

@ -24,7 +24,7 @@ default-features = false
[dependencies.ff]
path = "../ff"
version = "0.6"
version = "0.7"
default-features = false
[dependencies.group]

View File

@ -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"

View File

@ -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" }

View File

@ -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" }

View File

@ -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"

View File

@ -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"