From df41ff2cc95e94b235a1cfe85b892ce70f8be053 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 21 Jan 2023 18:00:34 +0000 Subject: [PATCH] Bump group from 0.12.1 to 0.13.0 Bumps [group](https://github.com/zkcrypto/group) from 0.12.1 to 0.13.0. - [Release notes](https://github.com/zkcrypto/group/releases) - [Changelog](https://github.com/zkcrypto/group/blob/main/CHANGELOG.md) - [Commits](https://github.com/zkcrypto/group/commits) --- updated-dependencies: - dependency-name: group dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 37 +++++++++++++++++++++++++++++-------- crypto/tbs/Cargo.toml | 2 +- 2 files changed, 30 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1aaa68f1e9e..5b6c97bbb62 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -401,8 +401,8 @@ version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a3c196a77437e7cc2fb515ce413a6401291578b5afc8ecb29a3c7ab957f05941" dependencies = [ - "ff", - "group", + "ff 0.12.1", + "group 0.12.1", "pairing", "rand_core", "subtle", @@ -1326,6 +1326,16 @@ dependencies = [ "subtle", ] +[[package]] +name = "ff" +version = "0.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ded41244b729663b1e574f1b4fb731469f69f79c17667b5d776b16cda0479449" +dependencies = [ + "rand_core", + "subtle", +] + [[package]] name = "fixedbitset" version = "0.4.2" @@ -1642,7 +1652,18 @@ version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5dfbfb3a6cfbd390d5c9564ab283a0349b9b9fcd46a706c1eb10e0db70bfbac7" dependencies = [ - "ff", + "ff 0.12.1", + "rand_core", + "subtle", +] + +[[package]] +name = "group" +version = "0.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63" +dependencies = [ + "ff 0.13.0", "rand_core", "subtle", ] @@ -2643,7 +2664,7 @@ version = "0.22.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "135590d8bdba2b31346f9cd1fb2a912329f5135e832a4f422942eb6ead8b6b3b" dependencies = [ - "group", + "group 0.12.1", ] [[package]] @@ -3668,8 +3689,8 @@ dependencies = [ "bitcoin_hashes", "bls12_381", "clap", - "ff", - "group", + "ff 0.12.1", + "group 0.13.0", "rand", "rand_chacha", "serde", @@ -3755,8 +3776,8 @@ source = "git+https://github.com/jkitman/threshold_crypto?branch=upgrade-thresho dependencies = [ "bls12_381", "byteorder", - "ff", - "group", + "ff 0.12.1", + "group 0.12.1", "hex_fmt", "log", "pairing", diff --git a/crypto/tbs/Cargo.toml b/crypto/tbs/Cargo.toml index a703e6c7873..0ad5a469997 100644 --- a/crypto/tbs/Cargo.toml +++ b/crypto/tbs/Cargo.toml @@ -19,7 +19,7 @@ path = "src/lib.rs" [dependencies] bls12_381 = { version = "0.7.1", features = [ "zeroize", "groups" ] } ff = "0.12.1" -group = "0.12.1" +group = "0.13.0" rand = "0.8" rand_chacha = "0.3.1" bitcoin_hashes = "0.11.0"