From aa37783c375d23c52fb3283863391b4899541127 Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Tue, 8 Oct 2019 16:01:24 +1300 Subject: [PATCH] group 0.2.0 --- Cargo.lock | 6 +++--- group/Cargo.toml | 7 +++++-- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 33c08a6f7..bc6120f9f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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)", ] diff --git a/group/Cargo.toml b/group/Cargo.toml index f27eb3fd1..03c172f9d 100644 --- a/group/Cargo.toml +++ b/group/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "group" -version = "0.1.0" +version = "0.2.0" authors = [ "Sean Bowe ", "Jack Grigg ", @@ -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" }