From eeb09e728e27bda608f2ce02d4682b96733ca2b2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 15 Nov 2023 22:31:58 +0000 Subject: [PATCH] build(deps): bump zeroize from 1.6.0 to 1.6.1 Bumps [zeroize](https://github.com/RustCrypto/utils) from 1.6.0 to 1.6.1. - [Commits](https://github.com/RustCrypto/utils/compare/zeroize-v1.6.0...zeroize-v1.6.1) --- updated-dependencies: - dependency-name: zeroize dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- elliptic-curve/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2bde6aed..1341d038 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1245,9 +1245,9 @@ dependencies = [ [[package]] name = "zeroize" -version = "1.6.0" +version = "1.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2a0956f1ba7c7909bfb66c2e9e4124ab6f6482560f6628b5aaeba39207c9aad9" +checksum = "12a3946ecfc929b583800f4629b6c25b88ac6e92a40ea5670f77112a85d40a8b" dependencies = [ "zeroize_derive", ] diff --git a/elliptic-curve/Cargo.toml b/elliptic-curve/Cargo.toml index 924ca39c..40685391 100644 --- a/elliptic-curve/Cargo.toml +++ b/elliptic-curve/Cargo.toml @@ -21,7 +21,7 @@ crypto-bigint = { version = "0.5", default-features = false, features = ["rand_c generic-array = { version = "0.14.6", default-features = false, features = ["zeroize"] } rand_core = { version = "0.6.4", default-features = false } subtle = { version = "2", default-features = false } -zeroize = { version = "1.5", default-features = false } +zeroize = { version = "1.6", default-features = false } # optional dependencies base64ct = { version = "1", optional = true, default-features = false, features = ["alloc"] }