From 3f615a7830e51fed22d8aa04bc49e9f1579e36a4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 12 Jan 2026 21:32:32 +0000 Subject: [PATCH] Bump getrandom from 0.2.16 to 0.2.17 Bumps [getrandom](https://github.com/rust-random/getrandom) from 0.2.16 to 0.2.17. - [Changelog](https://github.com/rust-random/getrandom/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-random/getrandom/compare/v0.2.16...v0.2.17) --- updated-dependencies: - dependency-name: getrandom dependency-version: 0.2.17 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- libs/simulation-wasm/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a6f58f1..a6c2459 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -189,9 +189,9 @@ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719" [[package]] name = "getrandom" -version = "0.2.16" +version = "0.2.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592" +checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0" dependencies = [ "cfg-if", "js-sys", diff --git a/libs/simulation-wasm/Cargo.toml b/libs/simulation-wasm/Cargo.toml index e2a265f..2926ed8 100644 --- a/libs/simulation-wasm/Cargo.toml +++ b/libs/simulation-wasm/Cargo.toml @@ -12,6 +12,6 @@ crate-type = ["cdylib"] serde = { version = "1.0.163", features = ["derive"] } rand = "0.8.5" wasm-bindgen = { version = "0.2.100", features = ["serde-serialize"] } -getrandom = { version = "0.2.9", features = ["js"] } +getrandom = { version = "0.2.17", features = ["js"] } lib-simulation = { path = "../simulation" }