From c8deef607b3b73be104e30912b4b50b237362fda Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 25 Apr 2022 06:44:59 -0700 Subject: [PATCH] Bump clap from 3.1.8 to 3.1.9 in /packer (#3635) Summary: Bumps [clap](https://github.com/clap-rs/clap) from 3.1.8 to 3.1.9.
Release notes

Sourced from clap's releases.

v3.1.9

[3.1.9] - 2022-04-15

Fixes

Changelog

Sourced from clap's changelog.

[3.1.9] - 2022-04-15

Fixes

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=clap&package-manager=cargo&previous-version=3.1.8&new-version=3.1.9)](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/3635 Reviewed By: antonk52 Differential Revision: D35893276 Pulled By: lblasa fbshipit-source-id: 382746292f77cbd734c0aa9e849a6f57d832ec14 --- packer/Cargo.lock | 18 ++++++++++++------ packer/Cargo.toml | 2 +- 2 files changed, 13 insertions(+), 7 deletions(-) diff --git a/packer/Cargo.lock b/packer/Cargo.lock index b248beb87..02d0953ff 100644 --- a/packer/Cargo.lock +++ b/packer/Cargo.lock @@ -72,16 +72,16 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "clap" -version = "3.1.8" +version = "3.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "71c47df61d9e16dc010b55dba1952a57d8c215dbb533fd13cdd13369aac73b1c" +checksum = "6aad2534fad53df1cc12519c5cda696dd3e20e6118a027e24054aea14a0bdcbe" dependencies = [ "atty", "bitflags", "clap_derive", + "clap_lex", "indexmap", "lazy_static", - "os_str_bytes", "strsim", "termcolor", "textwrap", @@ -100,6 +100,15 @@ dependencies = [ "syn", ] +[[package]] +name = "clap_lex" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "189ddd3b5d32a70b35e7686054371742a937b0d99128e76dde6340210e966669" +dependencies = [ + "os_str_bytes", +] + [[package]] name = "console" version = "0.15.0" @@ -453,9 +462,6 @@ name = "os_str_bytes" version = "6.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8e22443d1643a904602595ba1cd8f7d896afe56d26712531c5ff73a15b2fbf64" -dependencies = [ - "memchr", -] [[package]] name = "pkg-config" diff --git a/packer/Cargo.toml b/packer/Cargo.toml index 04e75640c..ca32bc4a2 100644 --- a/packer/Cargo.toml +++ b/packer/Cargo.toml @@ -10,7 +10,7 @@ authors = ["Facebook, Inc."] edition = "2021" [dependencies] -clap = { version = "3.1.7", features = ["derive", "cargo"] } +clap = { version = "3.1.9", features = ["derive", "cargo"] } shellexpand = "2.1.0" tar = "0.4.38" serde = { version = "1.0.136", features = ["derive"] }