From e09e84e4356983b7b5bb773245f999b29dfed4ea Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Wed, 10 Feb 2021 11:56:00 +0200 Subject: [PATCH] chore(deps): bump sha2 from 0.9.2 to 0.9.3 (#185) Bumps [sha2](https://github.com/RustCrypto/hashes) from 0.9.2 to 0.9.3. - [Release notes](https://github.com/RustCrypto/hashes/releases) - [Commits](https://github.com/RustCrypto/hashes/compare/sha2-v0.9.2...sha2-v0.9.3) Signed-off-by: dependabot-preview[bot] Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> --- Cargo.lock | 4 ++-- ethers-signers/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ee7827c0..13cc6b81 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2023,9 +2023,9 @@ dependencies = [ [[package]] name = "sha2" -version = "0.9.2" +version = "0.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6e7aab86fe2149bad8c507606bdb3f4ef5e7b2380eb92350f56122cca72a42a8" +checksum = "fa827a14b29ab7f44778d14a88d3cb76e949c45083f7dbfa507d0cb699dc12de" dependencies = [ "block-buffer", "cfg-if 1.0.0", diff --git a/ethers-signers/Cargo.toml b/ethers-signers/Cargo.toml index e430a968..8e34498a 100644 --- a/ethers-signers/Cargo.toml +++ b/ethers-signers/Cargo.toml @@ -23,7 +23,7 @@ eth-keystore = { version = "0.1.0" } hex = { version = "0.4.2", default-features = false, features = ["std"] } async-trait = { version = "0.1.40", default-features = false } elliptic-curve = { version = "0.8.4", default-features = false } -sha2 = { version = "0.9.2", default-features = false } +sha2 = { version = "0.9.3", default-features = false } rand = { version = "0.7.3", default-features = false } yubihsm = { version = "0.38.0", features = ["secp256k1", "http", "usb"], optional = true } futures-util = "0.3.12"