From 3a82c865aaa598adfe0767a0e7f79fd1d603bd33 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Mon, 20 Dec 2021 13:51:00 -0800
Subject: [PATCH] Bump sha2 from 0.9.6 to 0.10.0 in /packer (#3158)
Summary:
Bumps [sha2](https://github.com/RustCrypto/hashes) from 0.9.6 to 0.10.0.
Commits
[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
- `dependabot rebase` will rebase this PR
- `dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `dependabot merge` will merge this PR after your CI passes on it
- `dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `dependabot cancel merge` will cancel a previously requested merge and block automerging
- `dependabot reopen` will reopen this PR if it is closed
- `dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Pull Request resolved: https://github.com/facebook/flipper/pull/3158
Reviewed By: passy
Differential Revision: D33234024
Pulled By: aigoncharov
fbshipit-source-id: 48b4fec99fcafaac0bf1ac627d02f34215e502bb
---
packer/Cargo.lock | 31 +++++++++++++++++--------------
packer/Cargo.toml | 2 +-
2 files changed, 18 insertions(+), 15 deletions(-)
diff --git a/packer/Cargo.lock b/packer/Cargo.lock
index 9a78a39df..01076a003 100644
--- a/packer/Cargo.lock
+++ b/packer/Cargo.lock
@@ -51,9 +51,9 @@ checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
[[package]]
name = "block-buffer"
-version = "0.9.0"
+version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4"
+checksum = "f1d36a02058e76b040de25a4464ba1c80935655595b661505c8b39b664828b95"
dependencies = [
"generic-array",
]
@@ -163,6 +163,15 @@ dependencies = [
"lazy_static",
]
+[[package]]
+name = "crypto-common"
+version = "0.1.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "683d6b536309245c849479fba3da410962a43ed8e51c26b729208ec0ac2798d0"
+dependencies = [
+ "generic-array",
+]
+
[[package]]
name = "data-encoding"
version = "2.3.2"
@@ -171,10 +180,12 @@ checksum = "3ee2393c4a91429dffb4bedf19f4d6abf27d8a732c8ce4980305d782e5426d57"
[[package]]
name = "digest"
-version = "0.9.0"
+version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"
+checksum = "b697d66081d42af4fba142d56918a3cb21dc8eb63372c6b85d14f44fb9c5979b"
dependencies = [
+ "block-buffer",
+ "crypto-common",
"generic-array",
]
@@ -431,12 +442,6 @@ version = "1.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "af8b08b04175473088b46763e51ee54da5f9a164bc162f615b91bc179dbf15a3"
-[[package]]
-name = "opaque-debug"
-version = "0.3.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
-
[[package]]
name = "pkg-config"
version = "0.3.19"
@@ -634,15 +639,13 @@ dependencies = [
[[package]]
name = "sha2"
-version = "0.9.6"
+version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9204c41a1597a8c5af23c82d1c921cb01ec0a4c59e07a9c7306062829a3903f3"
+checksum = "900d964dd36bb15bcf2f2b35694c072feab74969a54f2bbeec7a2d725d2bdcb6"
dependencies = [
- "block-buffer",
"cfg-if",
"cpufeatures",
"digest",
- "opaque-debug",
]
[[package]]
diff --git a/packer/Cargo.toml b/packer/Cargo.toml
index 42f8cd8e5..3dc956a8f 100644
--- a/packer/Cargo.toml
+++ b/packer/Cargo.toml
@@ -16,7 +16,7 @@ tar = "0.4.37"
serde = { version = "1.0.130", features = ["derive"] }
serde_yaml = "0.8.21"
anyhow = "1.0.51"
-sha2 = "0.9.6"
+sha2 = "0.10.0"
data-encoding = "2.3.2"
serde_json = "1.0.67"
rayon = "1.5.1"