From 0695ef61db3a1e8295293ea7477cefd29f44bf4d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 12 May 2021 06:49:38 +0000 Subject: [PATCH] Bump sha-1 from 0.9.2 to 0.9.6 Bumps [sha-1](https://github.com/RustCrypto/hashes) from 0.9.2 to 0.9.6. - [Release notes](https://github.com/RustCrypto/hashes/releases) - [Commits](https://github.com/RustCrypto/hashes/compare/sha2-v0.9.2...sha-1-v0.9.6) Signed-off-by: dependabot[bot] --- Cargo.lock | 21 +++++++++++++++------ common/workspace-hack/Cargo.toml | 2 +- testsuite/diem-fuzzer/Cargo.toml | 2 +- 3 files changed, 17 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d8eceef351a1..01331fd7a848 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1055,6 +1055,15 @@ version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ea221b5284a47e40033bf9b66f35f984ec0ea2931eb03505246cd27a963f981b" +[[package]] +name = "cpufeatures" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dec1028182c380cc45a2e2c5ec841134f2dfd0f8f5f0a5bcd68004f81b5efdf4" +dependencies = [ + "libc", +] + [[package]] name = "cpuid-bool" version = "0.1.2" @@ -1567,7 +1576,7 @@ dependencies = [ "rusty-fork", "safety-rules", "serde_json", - "sha-1 0.9.2", + "sha-1 0.9.6", "state-synchronizer", "stats_alloc", "storage-interface", @@ -2360,7 +2369,7 @@ dependencies = [ "once_cell", "petgraph", "serde", - "sha-1 0.9.2", + "sha-1 0.9.6", "subtle", "syn 1.0.58", ] @@ -6209,13 +6218,13 @@ dependencies = [ [[package]] name = "sha-1" -version = "0.9.2" +version = "0.9.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ce3cdf1b5e620a498ee6f2a171885ac7e22f0e12089ec4b3d22b84921792507c" +checksum = "8c4cfa741c5832d0ef7fab46cabed29c2aae926db0b11bb2069edd8db5e64e16" dependencies = [ "block-buffer 0.9.0", "cfg-if 1.0.0", - "cpuid-bool 0.1.2", + "cpufeatures", "digest 0.9.0", "opaque-debug 0.3.0", ] @@ -7227,7 +7236,7 @@ dependencies = [ "input_buffer", "log", "rand 0.8.2", - "sha-1 0.9.2", + "sha-1 0.9.6", "url", "utf-8", ] diff --git a/common/workspace-hack/Cargo.toml b/common/workspace-hack/Cargo.toml index 823c638d6587..00b090456b0b 100644 --- a/common/workspace-hack/Cargo.toml +++ b/common/workspace-hack/Cargo.toml @@ -23,7 +23,7 @@ num-traits = { version = "0.2.14", features = ["i128", "std"] } once_cell = "1.5.2" petgraph = { version = "0.5.1", features = ["graphmap", "matrix_graph", "stable_graph"] } serde = { version = "1.0.120", features = ["derive", "rc"] } -sha-1 = { version = "0.9.2", features = ["std"] } +sha-1 = { version = "0.9.6", features = ["std"] } subtle = { version = "2.4.0", features = ["i128", "std"] } [build-dependencies] diff --git a/testsuite/diem-fuzzer/Cargo.toml b/testsuite/diem-fuzzer/Cargo.toml index f2ce4786755b..cc643ef4d57e 100644 --- a/testsuite/diem-fuzzer/Cargo.toml +++ b/testsuite/diem-fuzzer/Cargo.toml @@ -18,7 +18,7 @@ proptest = { version = "0.10.1", default-features = false } proptest-derive = { version = "0.2.0", default-features = false } rusty-fork = { version = "0.3.0", default-features = false } serde_json = "1.0.61" -sha-1 = { version = "0.9.2", default-features = false } +sha-1 = { version = "0.9.6", default-features = false } structopt = "0.3.21" rand = "0.7.3" ureq = { version = "1.5.4", features = ["json", "native-tls"], default-features = false }