From acbeeb166a6f67a29aa06dc7de2eb8862a344813 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 7 Apr 2025 04:36:40 +0000 Subject: [PATCH] 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.2) --- updated-dependencies: - dependency-name: getrandom dependency-version: 0.3.2 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 7ca7b55..428a9b2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ keywords = ["bloom", "filter"] readme = "README.md" [target.'cfg(all(any(target_arch = "wasm32", target_arch = "wasm64"), target_os = "unknown"))'.dependencies] -getrandom = { version = "0.2", optional = true, features = ["js"] } +getrandom = { version = "0.3", optional = true, features = ["js"] } [target.'cfg(not(all(any(target_arch = "wasm32", target_arch = "wasm64"), target_os = "unknown")))'.dependencies] getrandom = { version = "0.2", optional = true }