From 8a8b979f66dd54aa55d8be187211d6f9fdd955fc Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Tue, 5 Jan 2021 09:09:03 -0800
Subject: [PATCH] Bump shellexpand from 2.0.0 to 2.1.0 in /packer (#1792)
Summary:
Bumps [shellexpand](https://github.com/netvl/shellexpand) from 2.0.0 to 2.1.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/1792
Reviewed By: nikoant
Differential Revision: D25782253
Pulled By: passy
fbshipit-source-id: 4499f24365043b1b2f5d30e0f1809d44712cedfe
---
packer/Cargo.lock | 23 +++++++++++------------
packer/Cargo.toml | 2 +-
2 files changed, 12 insertions(+), 13 deletions(-)
diff --git a/packer/Cargo.lock b/packer/Cargo.lock
index c1bd3a0e3..ee901fa3d 100644
--- a/packer/Cargo.lock
+++ b/packer/Cargo.lock
@@ -236,22 +236,21 @@ dependencies = [
]
[[package]]
-name = "dirs"
-version = "2.0.2"
+name = "dirs-next"
+version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "13aea89a5c93364a98e9b37b2fa237effbb694d5cfe01c5b70941f7eb087d5e3"
+checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1"
dependencies = [
- "cfg-if 0.1.10",
- "dirs-sys",
+ "cfg-if 1.0.0",
+ "dirs-sys-next",
]
[[package]]
-name = "dirs-sys"
-version = "0.3.4"
+name = "dirs-sys-next"
+version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "afa0b23de8fd801745c471deffa6e12d248f962c9fd4b4c33787b055599bde7b"
+checksum = "99de365f605554ae33f115102a02057d4fc18b01f3284d6870be0938743cfe7d"
dependencies = [
- "cfg-if 0.1.10",
"libc",
"redox_users",
"winapi",
@@ -633,11 +632,11 @@ dependencies = [
[[package]]
name = "shellexpand"
-version = "2.0.0"
+version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9a2b22262a9aaf9464d356f656fea420634f78c881c5eebd5ef5e66d8b9bc603"
+checksum = "83bdb7831b2d85ddf4a7b148aa19d0587eddbe8671a436b7bd1182eaad0f2829"
dependencies = [
- "dirs",
+ "dirs-next",
]
[[package]]
diff --git a/packer/Cargo.toml b/packer/Cargo.toml
index f223c8999..4e3519460 100644
--- a/packer/Cargo.toml
+++ b/packer/Cargo.toml
@@ -11,7 +11,7 @@ edition = "2018"
[dependencies]
clap = "2.33.3"
-shellexpand = "2.0.0"
+shellexpand = "2.1.0"
tar = "0.4.30"
serde = { version = "1.0.118", features = ["derive"] }
serde_yaml = "0.8.13"