Bump frost-rerandomized from 2.0.0-rc.0 to 2.0.0

Bumps [frost-rerandomized](https://github.com/ZcashFoundation/frost) from 2.0.0-rc.0 to 2.0.0.
- [Release notes](https://github.com/ZcashFoundation/frost/releases)
- [Commits](https://github.com/ZcashFoundation/frost/compare/frost-rerandomized/v2.0.0-rc.0...frost-rerandomized/v2.0.0)

---
updated-dependencies:
- dependency-name: frost-rerandomized
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot] 2024-10-23 23:58:05 +00:00 committed by GitHub
parent ed49e9ca06
commit 1b5d66bff6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 8 additions and 8 deletions

12
Cargo.lock generated
View File

@ -322,9 +322,9 @@ checksum = "f400d0750c0c069e8493f2256cb4da6f604b6d2eeb69a0ca8863acde352f8400"
[[package]]
name = "derive-getters"
version = "0.4.0"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0a6433aac097572ea8ccc60b3f2e756c661c9aeed9225cdd4d0cb119cb7ff6ba"
checksum = "74ef43543e701c01ad77d3a5922755c6a1d71b22d942cb8042be4994b380caff"
dependencies = [
"proc-macro2",
"quote",
@ -391,9 +391,9 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
[[package]]
name = "frost-core"
version = "2.0.0-rc.0"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ed1383227a6606aacf5df9a17ff57824c6971a0ab225b69b911bec0ba7bbb869"
checksum = "a5afd375261c34d31ff24dad068382f4bc3c95010c919d4fb8d483dc3d85c023"
dependencies = [
"byteorder",
"const-crc32-nostd",
@ -417,9 +417,9 @@ dependencies = [
[[package]]
name = "frost-rerandomized"
version = "2.0.0-rc.0"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bdb14a6054f9ce5aa4912c60c11392d42c43acec8295ee1df1f67a9d0b7a73ee"
checksum = "1a9d77595060546b53543d96b83dbeacaf3907e40a89763a8bb22124812b0cb6"
dependencies = [
"derive-getters",
"document-features",

View File

@ -31,7 +31,7 @@ pasta_curves = { version = "0.5", default-features = false }
rand_core = { version = "0.6", default-features = false }
serde = { version = "1", optional = true, features = ["derive"] }
thiserror = { version = "1.0", optional = true }
frost-rerandomized = { version = "2.0.0-rc.0", optional = true, default-features = false, features = ["serialization", "cheater-detection"] }
frost-rerandomized = { version = "2.0.0", optional = true, default-features = false, features = ["serialization", "cheater-detection"] }
[dependencies.zeroize]
version = "1"
@ -50,7 +50,7 @@ rand_chacha = "0.3"
serde_json = "1.0"
num-bigint = "0.4.6"
num-traits = "0.2.19"
frost-rerandomized = { version = "2.0.0-rc.0", features = ["test-impl"] }
frost-rerandomized = { version = "2.0.0", features = ["test-impl"] }
# `alloc` is only used in test code
[dev-dependencies.pasta_curves]