From 0e251883d8808981ea26fe9961782985406a22ee Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 14 Apr 2026 03:01:11 +0000 Subject: [PATCH] Bump rand from 0.8.5 to 0.9.3 Bumps [rand](https://github.com/rust-random/rand) from 0.8.5 to 0.9.3. - [Release notes](https://github.com/rust-random/rand/releases) - [Changelog](https://github.com/rust-random/rand/blob/0.9.3/CHANGELOG.md) - [Commits](https://github.com/rust-random/rand/compare/0.8.5...0.9.3) --- updated-dependencies: - dependency-name: rand dependency-version: 0.9.3 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.lock | 92 +++++++++++++++++++++++++++++++++------- definy-client/Cargo.toml | 2 +- definy-event/Cargo.toml | 2 +- definy-ui/Cargo.toml | 2 +- 4 files changed, 80 insertions(+), 18 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e7924f6a..4d31856b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -247,11 +247,11 @@ dependencies = [ "definy-event", "definy-ui", "ed25519-dalek", - "getrandom", + "getrandom 0.2.17", "js-sys", "narumincho-vdom", "narumincho-vdom-client", - "rand", + "rand 0.9.3", "serde_cbor 0.11.2", "sha2", "wasm-bindgen", @@ -267,7 +267,7 @@ dependencies = [ "base64", "chrono", "ed25519-dalek", - "rand", + "rand 0.9.3", "serde", "serde_cbor 0.11.2", "sha2", @@ -315,7 +315,7 @@ dependencies = [ "hyper-util", "js-sys", "narumincho-vdom", - "rand", + "rand 0.9.3", "serde", "serde_cbor 0.11.2", "serde_json", @@ -386,7 +386,7 @@ checksum = "70e796c081cee67dc755e1a36a0a172b897fab85fc3f6bc48307991f64e4eca9" dependencies = [ "curve25519-dalek", "ed25519", - "rand_core", + "rand_core 0.6.4", "serde", "sha2", "subtle", @@ -578,6 +578,18 @@ dependencies = [ "wasm-bindgen", ] +[[package]] +name = "getrandom" +version = "0.3.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" +dependencies = [ + "cfg-if", + "libc", + "r-efi", + "wasip2", +] + [[package]] name = "h2" version = "0.4.13" @@ -1040,7 +1052,7 @@ dependencies = [ "num-integer", "num-iter", "num-traits", - "rand", + "rand 0.8.5", "smallvec", "zeroize", ] @@ -1206,6 +1218,12 @@ dependencies = [ "proc-macro2", ] +[[package]] +name = "r-efi" +version = "5.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" + [[package]] name = "rand" version = "0.8.5" @@ -1213,8 +1231,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" dependencies = [ "libc", - "rand_chacha", - "rand_core", + "rand_chacha 0.3.1", + "rand_core 0.6.4", +] + +[[package]] +name = "rand" +version = "0.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7ec095654a25171c2124e9e3393a930bddbffdc939556c914957a4c3e0a87166" +dependencies = [ + "rand_chacha 0.9.0", + "rand_core 0.9.5", ] [[package]] @@ -1224,7 +1252,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" dependencies = [ "ppv-lite86", - "rand_core", + "rand_core 0.6.4", +] + +[[package]] +name = "rand_chacha" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" +dependencies = [ + "ppv-lite86", + "rand_core 0.9.5", ] [[package]] @@ -1233,7 +1271,16 @@ version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" dependencies = [ - "getrandom", + "getrandom 0.2.17", +] + +[[package]] +name = "rand_core" +version = "0.9.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c" +dependencies = [ + "getrandom 0.3.4", ] [[package]] @@ -1262,7 +1309,7 @@ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" dependencies = [ "cc", "cfg-if", - "getrandom", + "getrandom 0.2.17", "libc", "untrusted", "windows-sys 0.52.0", @@ -1281,7 +1328,7 @@ dependencies = [ "num-traits", "pkcs1", "pkcs8", - "rand_core", + "rand_core 0.6.4", "signature", "spki", "subtle", @@ -1476,7 +1523,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de" dependencies = [ "digest", - "rand_core", + "rand_core 0.6.4", ] [[package]] @@ -1641,7 +1688,7 @@ dependencies = [ "memchr", "once_cell", "percent-encoding", - "rand", + "rand 0.8.5", "rsa", "serde", "sha1", @@ -1680,7 +1727,7 @@ dependencies = [ "md-5", "memchr", "once_cell", - "rand", + "rand 0.8.5", "serde", "serde_json", "sha2", @@ -2035,6 +2082,15 @@ version = "0.11.1+wasi-snapshot-preview1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" +[[package]] +name = "wasip2" +version = "1.0.2+wasi-0.2.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5" +dependencies = [ + "wit-bindgen", +] + [[package]] name = "wasite" version = "0.1.0" @@ -2356,6 +2412,12 @@ version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" +[[package]] +name = "wit-bindgen" +version = "0.51.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5" + [[package]] name = "writeable" version = "0.6.2" diff --git a/definy-client/Cargo.toml b/definy-client/Cargo.toml index 480b1cad..4278933e 100644 --- a/definy-client/Cargo.toml +++ b/definy-client/Cargo.toml @@ -15,7 +15,7 @@ definy-event = { path = "../definy-event" } narumincho-vdom-client = { path = "../narumincho-vdom-client" } narumincho-vdom = { path = "../narumincho-vdom" } ed25519-dalek = { version = "2.2", features = ["rand_core"] } -rand = { version = "0.8", features = ["std_rng"] } +rand = { version = "0.9", features = ["std_rng"] } getrandom = { version = "0.2", features = ["js"] } base64 = "0.22" wasm-bindgen-futures = "0.4.64" diff --git a/definy-event/Cargo.toml b/definy-event/Cargo.toml index 3e9f0e1d..35416f8a 100644 --- a/definy-event/Cargo.toml +++ b/definy-event/Cargo.toml @@ -9,7 +9,7 @@ serde = { version = "1", features = ["derive"] } serde_cbor = { version = "0.11.2", features = ["std", "tags"] } ed25519-dalek = { version = "2.2", features = ["rand_core", "serde"] } anyhow = "1.0.102" -rand = "0.8.5" +rand = "0.9.3" strum_macros = "0.27.2" strum = { version = "0.27.2", features = ["derive"] } sqlx = { version = "0.8.6", features = ["macros"] } diff --git a/definy-ui/Cargo.toml b/definy-ui/Cargo.toml index a3ec0029..4c83b699 100644 --- a/definy-ui/Cargo.toml +++ b/definy-ui/Cargo.toml @@ -40,7 +40,7 @@ web-sys = { version = "0.3.91", features = [ "CredentialRequestOptions", ] } wasm-bindgen = "0.2.114" -rand = "0.8.5" +rand = "0.9.3" wasm-bindgen-futures = "0.4.64" js-sys = "0.3.91" anyhow = "1.0.102"