Summary: Bumps [anyhow](https://github.com/dtolnay/anyhow) from 1.0.52 to 1.0.53. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/dtolnay/anyhow/releases">anyhow's releases</a>.</em></p> <blockquote> <h2>1.0.53</h2> <ul> <li>Retrigger docs.rs build to work around rustdoc regression (<a href="https://github-redirect.dependabot.com/rust-lang/rust/issues/92331">rust-lang/rust#92331</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="729002834c"><code>7290028</code></a> Release 1.0.53</li> <li><a href="4e73a15881"><code>4e73a15</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/dtolnay/anyhow/issues/217">https://github.com/facebook/flipper/issues/217</a> from dtolnay/ensuretest</li> <li><a href="dc087bceb3"><code>dc087bc</code></a> Update ensure tests to nightly-2022-01-04</li> <li><a href="6b9978cf2a"><code>6b9978c</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/dtolnay/anyhow/issues/216">https://github.com/facebook/flipper/issues/216</a> from dtolnay/ensuretest</li> <li><a href="703182a68a"><code>703182a</code></a> Update ensure tests to nightly-2022-01-02</li> <li><a href="2342773e00"><code>2342773</code></a> Ignore irrefutable_let_patterns lint in test suite</li> <li><a href="bae6962ea2"><code>bae6962</code></a> Detect warnings in CI</li> <li><a href="2c2568a478"><code>2c2568a</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/dtolnay/anyhow/issues/215">https://github.com/facebook/flipper/issues/215</a> from dtolnay/ensuretest</li> <li><a href="8b029fc149"><code>8b029fc</code></a> Update ensure tests to nightly-2021-12-30</li> <li>See full diff in <a href="https://github.com/dtolnay/anyhow/compare/1.0.52...1.0.53">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/3337 Reviewed By: mweststrate Differential Revision: D33741737 Pulled By: lblasa fbshipit-source-id: 10a5fabbde3e1afedcf69f1cbd027b52053aa31a
29 lines
653 B
TOML
29 lines
653 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.3.0"
|
|
authors = ["Facebook, Inc."]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
clap = "2.34.0"
|
|
shellexpand = "2.1.0"
|
|
tar = "0.4.38"
|
|
serde = { version = "1.0.133", features = ["derive"] }
|
|
serde_yaml = "0.8.23"
|
|
anyhow = "1.0.53"
|
|
sha2 = "0.10.1"
|
|
data-encoding = "2.3.2"
|
|
serde_json = "1.0.67"
|
|
rayon = "1.5.1"
|
|
indicatif = "^0.15"
|
|
xz2 = "0.1.6"
|
|
ignore = "0.4.18"
|
|
|
|
[dev-dependencies]
|
|
tempdir = "0.3.7"
|