Skip to content

Commit

Permalink
build(deps): bump rand from 0.8.5 to 0.9.0
Browse files Browse the repository at this point in the history
Bumps [rand](https://github.com/rust-random/rand) from 0.8.5 to 0.9.0.
- [Release notes](https://github.com/rust-random/rand/releases)
- [Changelog](https://github.com/rust-random/rand/blob/master/CHANGELOG.md)
- [Commits](rust-random/rand@0.8.5...0.9.0)

---
updated-dependencies:
- dependency-name: rand
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Feb 11, 2025
1 parent e65f4b7 commit 3572f14
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 17 deletions.
16 changes: 8 additions & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion coordinator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ frost-ed25519 = { version = "2.0.0", features = ["serde"] }
reddsa = { git = "https://github.com/ZcashFoundation/reddsa.git", rev = "ed49e9ca0699a6450f6d4a9fe62ff168f5ea1ead", features = ["frost", "serde"] }
hex = { version = "0.4", features = ["serde"] }
thiserror = "2.0"
rand = "0.8"
rand = "0.9"
serde_json = "1.0"
serdect = { version = "0.3.0" }
clap = { version = "4.5.23", features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion dkg/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ reddsa = { git = "https://github.com/ZcashFoundation/reddsa.git", rev = "ed49e9c
clap = { version = "4.5.23", features = ["derive"] }
hex = { version = "0.4", features = ["serde"] }
thiserror = "2.0"
rand = "0.8"
rand = "0.9"
serde_json = "1.0"
frostd = { path = "../frostd" }
participant = { path = "../participant" }
Expand Down
2 changes: 1 addition & 1 deletion frost-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ frost-core = { version = "2.0.0", features = ["serde"] }
frost-ed25519 = { version = "2.0.0", features = ["serde"] }
frost-rerandomized = { version = "2.0.0-rc.0", features = ["serde"] }
reddsa = { git = "https://github.com/ZcashFoundation/reddsa.git", rev = "ed49e9ca0699a6450f6d4a9fe62ff168f5ea1ead", features = ["frost"] }
rand = "0.8"
rand = "0.9"
stable-eyre = "0.2"
itertools = "0.14.0"
xeddsa = "1.0.2"
2 changes: 1 addition & 1 deletion frostd/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ eyre = "0.6.11"
frost-core = { version = "2.0.0", features = ["serde"] }
frost-rerandomized = { version = "2.0.0-rc.0", features = ["serde"] }
hex = "0.4"
rand = "0.8"
rand = "0.9"
serde = { version = "1.0", features = ["derive"] }
serdect = { version = "0.3.0" }
serde_json = "1.0.138"
Expand Down
2 changes: 1 addition & 1 deletion participant/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ frost-rerandomized = { version = "2.0.0-rc.0", features = ["serde"] }
frost-ed25519 = { version = "2.0.0", features = ["serde"] }
reddsa = { git = "https://github.com/ZcashFoundation/reddsa.git", rev = "ed49e9ca0699a6450f6d4a9fe62ff168f5ea1ead", features = ["frost"] }
hex = "0.4"
rand = "0.8"
rand = "0.9"
eyre = "0.6.12"
exitcode = "1.1.2"
serde_json = "1.0"
Expand Down
4 changes: 2 additions & 2 deletions tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2021"
frost-ed25519 = { version = "2.0.0", features = ["serde"] }
reddsa = { git = "https://github.com/ZcashFoundation/reddsa.git", rev = "ed49e9ca0699a6450f6d4a9fe62ff168f5ea1ead", features = ["frost"] }
hex = "0.4"
rand = "0.8"
rand = "0.9"
exitcode = "1.1.2"
serde_json = "1.0"
tokio = { version = "1", features = ["full"] }
Expand All @@ -19,7 +19,7 @@ trusted-dealer = { path = "../trusted-dealer"}
participant = { path = "../participant"}
coordinator = { path = "../coordinator"}
frostd = { path = "../frostd"}
rand = "0.8"
rand = "0.9"

[features]
default = []
2 changes: 1 addition & 1 deletion trusted-dealer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ frost-ed25519 = { version = "2.0.0", features = ["serde"] }
reddsa = { git = "https://github.com/ZcashFoundation/reddsa.git", rev = "ed49e9ca0699a6450f6d4a9fe62ff168f5ea1ead", features = ["frost"] }
clap = { version = "4.5.23", features = ["derive"] }
thiserror = "2.0"
rand = "0.8"
rand = "0.9"
hex = "0.4"
itertools = "0.14.0"
serde_json = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion zcash-sign/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ halo2_proofs = "0.3.0"
hex = "0.4.3"
lazy_static = "1.5.0"
orchard = { version = "0.10.1", features = ["unstable-frost"] }
rand = "0.8.5"
rand = "0.9.0"
rand_core = "0.6.4"
sapling-crypto = "0.4.0"
serde = "1.0.204"
Expand Down

0 comments on commit 3572f14

Please sign in to comment.