From 46a8b18732bf3fd304bf9d03c42a097008db1918 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Tue, 11 May 2021 04:52:59 -0700
Subject: [PATCH] Bump sha2 from 0.9.3 to 0.9.4 in /packer (#2284)
Summary:
Bumps [sha2](https://github.com/RustCrypto/hashes) from 0.9.3 to 0.9.4.
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/2284
Reviewed By: mweststrate
Differential Revision: D28323760
Pulled By: cekkaewnumchai
fbshipit-source-id: 3b72cb7ba7f724652b617aad22531ee2c84d60d9
---
packer/Cargo.lock | 15 +++++++++------
packer/Cargo.toml | 2 +-
2 files changed, 10 insertions(+), 7 deletions(-)
diff --git a/packer/Cargo.lock b/packer/Cargo.lock
index 193028236..75f7a7376 100644
--- a/packer/Cargo.lock
+++ b/packer/Cargo.lock
@@ -110,10 +110,13 @@ dependencies = [
]
[[package]]
-name = "cpuid-bool"
-version = "0.1.2"
+name = "cpufeatures"
+version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8aebca1129a03dc6dc2b127edd729435bbc4a37e1d5f4d7513165089ceb02634"
+checksum = "dec1028182c380cc45a2e2c5ec841134f2dfd0f8f5f0a5bcd68004f81b5efdf4"
+dependencies = [
+ "libc",
+]
[[package]]
name = "crossbeam-channel"
@@ -615,13 +618,13 @@ dependencies = [
[[package]]
name = "sha2"
-version = "0.9.3"
+version = "0.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "fa827a14b29ab7f44778d14a88d3cb76e949c45083f7dbfa507d0cb699dc12de"
+checksum = "d8f6b75b17576b792bef0db1bcc4b8b8bcdf9506744cf34b974195487af6cff2"
dependencies = [
"block-buffer",
"cfg-if",
- "cpuid-bool",
+ "cpufeatures",
"digest",
"opaque-debug",
]
diff --git a/packer/Cargo.toml b/packer/Cargo.toml
index c6853d20b..a9292335d 100644
--- a/packer/Cargo.toml
+++ b/packer/Cargo.toml
@@ -16,7 +16,7 @@ tar = "0.4.33"
serde = { version = "1.0.125", features = ["derive"] }
serde_yaml = "0.8.17"
anyhow = "1.0.40"
-sha2 = "0.9.3"
+sha2 = "0.9.4"
data-encoding = "2.3.2"
serde_json = "1.0.64"
rayon = "1.5.0"