From abc9f91e13a712134d6e45cc45b78f614604a633 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 6 Oct 2023 14:18:14 +0000 Subject: [PATCH] chore(deps): bump sha2 from 0.10.7 to 0.10.8 Bumps [sha2](https://github.com/RustCrypto/hashes) from 0.10.7 to 0.10.8. - [Commits](https://github.com/RustCrypto/hashes/compare/sha2-v0.10.7...sha2-v0.10.8) --- updated-dependencies: - dependency-name: sha2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 5 +++-- examples/file-hash/Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index eb6ea0d6..80da037e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -607,6 +607,7 @@ dependencies = [ "futures", "futures-channel", "futures-core", + "futures-io", "futures-sink", "gloo-utils 0.2.0", "http", @@ -1413,9 +1414,9 @@ dependencies = [ [[package]] name = "sha2" -version = "0.10.7" +version = "0.10.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "479fb9d862239e610720565ca91403019f2f00410f1864c5aa7479b950a76ed8" +checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8" dependencies = [ "cfg-if", "cpufeatures", diff --git a/examples/file-hash/Cargo.toml b/examples/file-hash/Cargo.toml index 83febf15..bc7387f0 100644 --- a/examples/file-hash/Cargo.toml +++ b/examples/file-hash/Cargo.toml @@ -16,7 +16,7 @@ wasm-bindgen-futures = { version = "0.4" } wasm-streams = "0.3.0" wasm-bindgen = "0.2.86" futures = "0.3.28" -sha2 = "0.10.6" +sha2 = "0.10.8" console_error_panic_hook = "0.1.7" yew = { version = "0.20.0", features = ["csr"] } serde-wasm-bindgen = "0.6.0"