From 1ee600443e45d71b16cbf3262659a448bed1e3cb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Jan 2025 22:53:01 +0000 Subject: [PATCH] build(deps): update getrandom requirement in /bindings/javascript Updates the requirements on [getrandom](https://github.com/rust-random/getrandom) to permit the latest version. - [Changelog](https://github.com/rust-random/getrandom/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-random/getrandom/compare/v0.2.0...v0.2.15) --- updated-dependencies: - dependency-name: getrandom dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- bindings/javascript/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/javascript/Cargo.toml b/bindings/javascript/Cargo.toml index 21aff3b..58e27f0 100644 --- a/bindings/javascript/Cargo.toml +++ b/bindings/javascript/Cargo.toml @@ -28,7 +28,7 @@ napi-derive = "2.14.4" [target.'cfg(target_arch = "wasm32")'.dependencies] wasm-bindgen = "=0.2.99" serde-wasm-bindgen = "0.6" -getrandom = { version = "0.2", features = ["js"] } +getrandom = { version = "0.3", features = ["js"] } serde = { version = "1", features = ["derive"], default-features = false } [target.'cfg(not(target_arch = "wasm32"))'.dependencies.css-inline]