From 97e06ddb1c846079a03a59545d2814ddda5332b9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Aug 2025 10:47:09 +0000 Subject: [PATCH] chore(deps): Update getrandom requirement from 0.2 to 0.3 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.3.3) --- updated-dependencies: - dependency-name: getrandom dependency-version: 0.3.3 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index a568e43d..c11ef2db 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -65,7 +65,7 @@ wasm-bindgen = "0.2" wasm-bindgen-futures = "0.4" web-sys = { version = "0.3", features = ["console", "Window", "Document", "WebSocket", "MessageEvent", "CloseEvent", "ErrorEvent", "BinaryType", "Headers", "Request", "RequestInit", "Response"] } js-sys = "0.3" -getrandom = { version = "0.2", features = ["js"] } +getrandom = { version = "0.3", features = ["js"] } # Transport dependencies tokio-tungstenite = { version = "0.27", optional = true }