Bump frost-rerandomized from 1.0.0-rc.0 to 1.0.0 (#118)

Bumps [frost-rerandomized](https://github.com/ZcashFoundation/frost) from 1.0.0-rc.0 to 1.0.0.
- [Release notes](https://github.com/ZcashFoundation/frost/releases)
- [Commits](https://github.com/ZcashFoundation/frost/compare/frost-rerandomized/v1.0.0-rc.0...frost-rerandomized/v1.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>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
dependabot[bot] 2024-02-28 17:01:19 -03:00 committed by GitHub
parent 34c4dec867
commit 7fba86605f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 6 deletions

8
Cargo.lock generated
View File

@ -391,9 +391,9 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
[[package]]
name = "frost-core"
version = "1.0.0-rc.0"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eae732628620e7e52b3146df2eef3636f321b63dfba6e92b3b67147e0c5b2bb2"
checksum = "45d6280625f1603d160df24b23e4984a6a7286f41455ae606823d0104c32e834"
dependencies = [
"byteorder",
"const-crc32",
@ -416,9 +416,9 @@ dependencies = [
[[package]]
name = "frost-rerandomized"
version = "1.0.0-rc.0"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "abc9f0445f27262bd1e1d4754ad8ce7ac03c8d079704e6c696f5e40bab85d1e2"
checksum = "52c58f58ea009000db490efd9a3936d0035647a2b00c7ba8f3868c2ed0306b0b"
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 = "1.0.0-rc.0", optional = true }
frost-rerandomized = { version = "1.0.0", optional = true }
[dependencies.zeroize]
version = "1"
@ -50,7 +50,7 @@ rand_chacha = "0.3"
serde_json = "1.0"
num-bigint = "0.4.3"
num-traits = "0.2.18"
frost-rerandomized = { version = "1.0.0-rc.0", features = ["test-impl"] }
frost-rerandomized = { version = "1.0.0", features = ["test-impl"] }
# `alloc` is only used in test code
[dev-dependencies.pasta_curves]