From 4a7d207134f34a6b8990200d3ff57518c4fdc1b0 Mon Sep 17 00:00:00 2001
From: "dependabot-preview[bot]"
<27856297+dependabot-preview[bot]@users.noreply.github.com>
Date: Mon, 18 May 2020 09:09:41 -0700
Subject: [PATCH] Bump clap from 2.33.0 to 2.33.1 in /packer (#1170)
Summary:
Bumps [clap](https://github.com/clap-rs/clap) from 2.33.0 to 2.33.1.
Release notes
Sourced from clap's releases.
v2.33.1
v2.33.1 (2020-05-11)
Bug Fixes
- Windows: Prevent some panics when parsing invalid Unicode on Windows (922c645, closes #1905)
Documentation
- fixes versions referenced in the README (d307466a)
- README.md:
- cuts down the number of examples to reduce confusion (6e508ee0)
Improvements
Minimum Required Rust
- As of this release,
clap requires rustc 1.36.0 or greater.
Changelog
Sourced from clap's changelog.
v2.33.1 (2020-05-11)
Bug Fixes
- Windows: Prevent some panics when parsing invalid Unicode on Windows (922c645, closes #1905)
Documentation
- fixes versions referenced in the README (d307466a)
- README.md:
- cuts down the number of examples to reduce confusion (6e508ee0)
Improvements
Minimum Required Rust
- As of this release,
clap requires rustc 1.36.0 or greater.
Commits
[](https://dependabot.com/compatibility-score/?dependency-name=clap&package-manager=cargo&previous-version=2.33.0&new-version=2.33.1)
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)
- `dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme
Additionally, you can set the following in the `.dependabot/config.yml` file in this repo:
- Update frequency
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)
Pull Request resolved: https://github.com/facebook/flipper/pull/1170
Reviewed By: passy
Differential Revision: D21619402
Pulled By: cekkaewnumchai
fbshipit-source-id: 88f9d7579e4c5c0027b2144006fbaff7a02540ef
---
packer/Cargo.lock | 4 ++--
packer/Cargo.toml | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/packer/Cargo.lock b/packer/Cargo.lock
index 4a8a6b9e0..bbb8ef648 100644
--- a/packer/Cargo.lock
+++ b/packer/Cargo.lock
@@ -114,9 +114,9 @@ checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
[[package]]
name = "clap"
-version = "2.33.0"
+version = "2.33.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5067f5bb2d80ef5d68b4c87db81601f0b75bca627bc2ef76b141d7b846a3c6d9"
+checksum = "bdfa80d47f954d53a35a64987ca1422f495b8d6483c0fe9f7117b36c2a792129"
dependencies = [
"ansi_term",
"atty",
diff --git a/packer/Cargo.toml b/packer/Cargo.toml
index 10ecc944d..aa7bd3ea2 100644
--- a/packer/Cargo.toml
+++ b/packer/Cargo.toml
@@ -5,7 +5,7 @@ authors = ["Facebook, Inc."]
edition = "2018"
[dependencies]
-clap = "^2.33.0"
+clap = "^2.33.1"
shellexpand = "^2.0.0"
tar = "^0.4.26"
serde = { version = "^1.0.106", features = ["derive"] }