diff --git a/Cargo.lock b/Cargo.lock index 81dbfe03..f1dd846e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,6 +1,6 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. -version = 3 +version = 4 [[package]] name = "addr2line" @@ -1001,9 +1001,9 @@ dependencies = [ [[package]] name = "getrandom" -version = "0.2.8" +version = "0.2.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31" +checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592" dependencies = [ "cfg-if", "js-sys", diff --git a/examples/aead/Cargo.toml b/examples/aead/Cargo.toml index 124c1230..50b31097 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.8", features = ["js"] } +getrandom = { version = "^0.2.16", features = ["js"] } hex = "^0.4.3" tink-aead = "^0.3" tink-core = "^0.3"