Summary: Bumps [clap](https://github.com/clap-rs/clap) from 3.1.8 to 3.1.9. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/clap-rs/clap/releases">clap's releases</a>.</em></p> <blockquote> <h2>v3.1.9</h2> <h2>[3.1.9] - 2022-04-15</h2> <h3>Fixes</h3> <ul> <li>Pin the <code>clap_derive</code> version so a compatible version is always used with <code>clap</code></li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap's changelog</a>.</em></p> <blockquote> <h2>[3.1.9] - 2022-04-15</h2> <h3>Fixes</h3> <ul> <li>Pin the <code>clap_derive</code> version so a compatible version is always used with <code>clap</code></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="7598c000f9"><code>7598c00</code></a> chore: Release</li> <li><a href="d05c5dac41"><code>d05c5da</code></a> docs: Update changelog</li> <li><a href="4abf9d7f2e"><code>4abf9d7</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/3636">https://github.com/facebook/flipper/issues/3636</a> from epage/derive</li> <li><a href="027f2511c6"><code>027f251</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/3634">https://github.com/facebook/flipper/issues/3634</a> from turrisxyz/naveen/feat/set-perms-actions</li> <li><a href="ed57342bdd"><code>ed57342</code></a> fix(derive): Couple derive version to clap</li> <li><a href="297b9cf594"><code>297b9cf</code></a> chore: Release</li> <li><a href="b3cbfd0ae0"><code>b3cbfd0</code></a> docs(man): Update changelog</li> <li><a href="7849c35a3e"><code>7849c35</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/3635">https://github.com/facebook/flipper/issues/3635</a> from epage/port</li> <li><a href="15d8b3b0cd"><code>15d8b3b</code></a> style: Make clippy happy</li> <li><a href="2f0d91688a"><code>2f0d916</code></a> docs(lex): Fix links</li> <li>Additional commits viewable in <a href="https://github.com/clap-rs/clap/compare/v3.1.8...v3.1.9">compare view</a></li> </ul> </details> <br /> [](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) --- <details> <summary>Dependabot commands and options</summary> <br /> 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) </details> Pull Request resolved: https://github.com/facebook/flipper/pull/3635 Reviewed By: antonk52 Differential Revision: D35893276 Pulled By: lblasa fbshipit-source-id: 382746292f77cbd734c0aa9e849a6f57d832ec14
29 lines
698 B
TOML
29 lines
698 B
TOML
[package]
|
|
name = "flipper-packer"
|
|
description = "Helper tool that breaks down a Flipper release into smaller artifacts."
|
|
license = "MIT"
|
|
repository = "https://github.com/facebook/flipper.git"
|
|
keywords = ["flipper", "cli"]
|
|
categories = ["development-tools"]
|
|
version = "0.4.0"
|
|
authors = ["Facebook, Inc."]
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
clap = { version = "3.1.9", features = ["derive", "cargo"] }
|
|
shellexpand = "2.1.0"
|
|
tar = "0.4.38"
|
|
serde = { version = "1.0.136", features = ["derive"] }
|
|
serde_yaml = "0.8.23"
|
|
anyhow = "1.0.56"
|
|
sha2 = "0.10.2"
|
|
data-encoding = "2.3.2"
|
|
serde_json = "1.0.79"
|
|
rayon = "1.5.1"
|
|
indicatif = "^0.15"
|
|
xz2 = "0.1.6"
|
|
ignore = "0.4.18"
|
|
|
|
[dev-dependencies]
|
|
tempdir = "0.3.7"
|