group 0.2.0

This commit is contained in:
Jack Grigg 2019-10-08 16:01:24 +13:00
parent 216f0f62a0
commit aa37783c37
No known key found for this signature in database
GPG Key ID: 9E8255172BBF9898
2 changed files with 8 additions and 5 deletions

6
Cargo.lock generated
View File

@ -63,7 +63,7 @@ dependencies = [
"ff 0.5.0",
"futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)",
"futures-cpupool 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
"group 0.1.0",
"group 0.2.0",
"hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
"num_cpus 1.10.1 (registry+https://github.com/rust-lang/crates.io-index)",
"pairing 0.14.2",
@ -316,7 +316,7 @@ dependencies = [
[[package]]
name = "group"
version = "0.1.0"
version = "0.2.0"
dependencies = [
"ff 0.5.0",
"rand 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
@ -439,7 +439,7 @@ version = "0.14.2"
dependencies = [
"byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
"ff 0.5.0",
"group 0.1.0",
"group 0.2.0",
"rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
"rand_xorshift 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
]

View File

@ -1,6 +1,6 @@
[package]
name = "group"
version = "0.1.0"
version = "0.2.0"
authors = [
"Sean Bowe <ewillbefull@gmail.com>",
"Jack Grigg <jack@z.cash>",
@ -15,6 +15,9 @@ repository = "https://github.com/ebfull/group"
edition = "2018"
[dependencies]
ff = { path = "../ff" }
ff = { version = "0.5.0", path = "../ff" }
rand = "0.7"
rand_xorshift = "0.2"
[badges]
maintenance = { status = "actively-developed" }