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"