Skip to content

Commit 3572f14

Browse files
build(deps): bump rand from 0.8.5 to 0.9.0
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]>
1 parent e65f4b7 commit 3572f14

File tree

9 files changed

+17
-17
lines changed

9 files changed

+17
-17
lines changed

Cargo.lock

+8-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

coordinator/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ frost-ed25519 = { version = "2.0.0", features = ["serde"] }
1414
reddsa = { git = "https://github.com/ZcashFoundation/reddsa.git", rev = "ed49e9ca0699a6450f6d4a9fe62ff168f5ea1ead", features = ["frost", "serde"] }
1515
hex = { version = "0.4", features = ["serde"] }
1616
thiserror = "2.0"
17-
rand = "0.8"
17+
rand = "0.9"
1818
serde_json = "1.0"
1919
serdect = { version = "0.3.0" }
2020
clap = { version = "4.5.23", features = ["derive"] }

dkg/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ reddsa = { git = "https://github.com/ZcashFoundation/reddsa.git", rev = "ed49e9c
1414
clap = { version = "4.5.23", features = ["derive"] }
1515
hex = { version = "0.4", features = ["serde"] }
1616
thiserror = "2.0"
17-
rand = "0.8"
17+
rand = "0.9"
1818
serde_json = "1.0"
1919
frostd = { path = "../frostd" }
2020
participant = { path = "../participant" }

frost-client/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ frost-core = { version = "2.0.0", features = ["serde"] }
2828
frost-ed25519 = { version = "2.0.0", features = ["serde"] }
2929
frost-rerandomized = { version = "2.0.0-rc.0", features = ["serde"] }
3030
reddsa = { git = "https://github.com/ZcashFoundation/reddsa.git", rev = "ed49e9ca0699a6450f6d4a9fe62ff168f5ea1ead", features = ["frost"] }
31-
rand = "0.8"
31+
rand = "0.9"
3232
stable-eyre = "0.2"
3333
itertools = "0.14.0"
3434
xeddsa = "1.0.2"

frostd/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ eyre = "0.6.11"
1717
frost-core = { version = "2.0.0", features = ["serde"] }
1818
frost-rerandomized = { version = "2.0.0-rc.0", features = ["serde"] }
1919
hex = "0.4"
20-
rand = "0.8"
20+
rand = "0.9"
2121
serde = { version = "1.0", features = ["derive"] }
2222
serdect = { version = "0.3.0" }
2323
serde_json = "1.0.138"

participant/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ frost-rerandomized = { version = "2.0.0-rc.0", features = ["serde"] }
1313
frost-ed25519 = { version = "2.0.0", features = ["serde"] }
1414
reddsa = { git = "https://github.com/ZcashFoundation/reddsa.git", rev = "ed49e9ca0699a6450f6d4a9fe62ff168f5ea1ead", features = ["frost"] }
1515
hex = "0.4"
16-
rand = "0.8"
16+
rand = "0.9"
1717
eyre = "0.6.12"
1818
exitcode = "1.1.2"
1919
serde_json = "1.0"

tests/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ edition = "2021"
77
frost-ed25519 = { version = "2.0.0", features = ["serde"] }
88
reddsa = { git = "https://github.com/ZcashFoundation/reddsa.git", rev = "ed49e9ca0699a6450f6d4a9fe62ff168f5ea1ead", features = ["frost"] }
99
hex = "0.4"
10-
rand = "0.8"
10+
rand = "0.9"
1111
exitcode = "1.1.2"
1212
serde_json = "1.0"
1313
tokio = { version = "1", features = ["full"] }
@@ -19,7 +19,7 @@ trusted-dealer = { path = "../trusted-dealer"}
1919
participant = { path = "../participant"}
2020
coordinator = { path = "../coordinator"}
2121
frostd = { path = "../frostd"}
22-
rand = "0.8"
22+
rand = "0.9"
2323

2424
[features]
2525
default = []

trusted-dealer/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ frost-ed25519 = { version = "2.0.0", features = ["serde"] }
1212
reddsa = { git = "https://github.com/ZcashFoundation/reddsa.git", rev = "ed49e9ca0699a6450f6d4a9fe62ff168f5ea1ead", features = ["frost"] }
1313
clap = { version = "4.5.23", features = ["derive"] }
1414
thiserror = "2.0"
15-
rand = "0.8"
15+
rand = "0.9"
1616
hex = "0.4"
1717
itertools = "0.14.0"
1818
serde_json = "1.0"

zcash-sign/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ halo2_proofs = "0.3.0"
1212
hex = "0.4.3"
1313
lazy_static = "1.5.0"
1414
orchard = { version = "0.10.1", features = ["unstable-frost"] }
15-
rand = "0.8.5"
15+
rand = "0.9.0"
1616
rand_core = "0.6.4"
1717
sapling-crypto = "0.4.0"
1818
serde = "1.0.204"

0 commit comments

Comments
 (0)