diff --git a/Cargo.lock b/Cargo.lock index 28c91b52f45..685ae4602ac 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -401,7 +401,7 @@ version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a3c196a77437e7cc2fb515ce413a6401291578b5afc8ecb29a3c7ab957f05941" dependencies = [ - "ff", + "ff 0.12.1", "group", "pairing", "rand_core", @@ -1309,6 +1309,17 @@ dependencies = [ "subtle", ] +[[package]] +name = "ff" +version = "0.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ded41244b729663b1e574f1b4fb731469f69f79c17667b5d776b16cda0479449" +dependencies = [ + "bitvec", + "rand_core", + "subtle", +] + [[package]] name = "fixedbitset" version = "0.4.2" @@ -1625,7 +1636,7 @@ 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", ] @@ -3652,7 +3663,7 @@ dependencies = [ "bitcoin_hashes", "bls12_381", "clap", - "ff", + "ff 0.13.0", "group", "rand", "rand_chacha", @@ -3739,7 +3750,7 @@ source = "git+https://github.com/jkitman/threshold_crypto?branch=upgrade-thresho dependencies = [ "bls12_381", "byteorder", - "ff", + "ff 0.12.1", "group", "hex_fmt", "log", diff --git a/crypto/tbs/Cargo.toml b/crypto/tbs/Cargo.toml index f9dcb37fb49..8fc7e9e1702 100644 --- a/crypto/tbs/Cargo.toml +++ b/crypto/tbs/Cargo.toml @@ -18,7 +18,7 @@ path = "src/lib.rs" [dependencies] bls12_381 = { version = "0.7.1", features = [ "zeroize", "groups" ] } -ff = "0.12.1" +ff = "0.13.0" group = "0.12.1" rand = "0.8" rand_chacha = "0.3.1"