From 43b94fb228efe276141f9c357c9bfd0f6f89330b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 13 Jan 2026 03:54:45 +0000 Subject: [PATCH] build(deps): 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 ++-- examples/aead/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ed86ed68..0d351403 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1003,9 +1003,9 @@ dependencies = [ [[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/examples/aead/Cargo.toml b/examples/aead/Cargo.toml index 50b31097..5c88d663 100644 --- a/examples/aead/Cargo.toml +++ b/examples/aead/Cargo.toml @@ -9,7 +9,7 @@ publish = false [dependencies] # Force on the `js` feature of `getrandom` so a build of this example # for `wasm32-unknown-unknown` works. -getrandom = { version = "^0.2.16", features = ["js"] } +getrandom = { version = "^0.2.17", features = ["js"] } hex = "^0.4.3" tink-aead = "^0.3" tink-core = "^0.3"