Files
flipper/packer/Cargo.toml
dependabot[bot] 479b2d6553 Bump xz2 from 0.1.6 to 0.1.7 in /packer (#3814)
Summary:
Bumps [xz2](https://github.com/alexcrichton/xz2-rs) from 0.1.6 to 0.1.7.
<details>
<summary>Commits</summary>
<ul>
<li><a href="fe71b3b7d8"><code>fe71b3b</code></a> Bump version numbers</li>
<li><a href="949294ec70"><code>949294e</code></a> Fix typo (<a href="https://github-redirect.dependabot.com/alexcrichton/xz2-rs/issues/92">https://github.com/facebook/flipper/issues/92</a>)</li>
<li><a href="3a7406e406"><code>3a7406e</code></a> Fix typo in version number (<a href="https://github-redirect.dependabot.com/alexcrichton/xz2-rs/issues/90">https://github.com/facebook/flipper/issues/90</a>)</li>
<li><a href="8db5c19b5e"><code>8db5c19</code></a> Re-export the static feature from lzma-sys. (<a href="https://github-redirect.dependabot.com/alexcrichton/xz2-rs/issues/85">https://github.com/facebook/flipper/issues/85</a>)</li>
<li><a href="c58d7b96c6"><code>c58d7b9</code></a> Remove dependabot config</li>
<li><a href="76c3557be6"><code>76c3557</code></a> Made ErrorKind for std::io::Error more specific (<a href="https://github-redirect.dependabot.com/alexcrichton/xz2-rs/issues/80">https://github.com/facebook/flipper/issues/80</a>)</li>
<li><a href="32665290a0"><code>3266529</code></a> Upgrade to GitHub-native Dependabot (<a href="https://github-redirect.dependabot.com/alexcrichton/xz2-rs/issues/77">https://github.com/facebook/flipper/issues/77</a>)</li>
<li><a href="6c1a78c4bf"><code>6c1a78c</code></a> Update quickcheck requirement from 0.9.0 to 1.0.1 (<a href="https://github-redirect.dependabot.com/alexcrichton/xz2-rs/issues/72">https://github.com/facebook/flipper/issues/72</a>)</li>
<li><a href="341a3fa06b"><code>341a3fa</code></a> Update rand requirement from 0.7.0 to 0.8.0 (<a href="https://github-redirect.dependabot.com/alexcrichton/xz2-rs/issues/69">https://github.com/facebook/flipper/issues/69</a>)</li>
<li><a href="880dbdee22"><code>880dbde</code></a> Render with more cargo features on docs.rs (<a href="https://github-redirect.dependabot.com/alexcrichton/xz2-rs/issues/68">https://github.com/facebook/flipper/issues/68</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/alexcrichton/xz2-rs/compare/0.1.6...0.1.7">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=xz2&package-manager=cargo&previous-version=0.1.6&new-version=0.1.7)](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/3814

Reviewed By: aigoncharov

Differential Revision: D40335015

Pulled By: mweststrate

fbshipit-source-id: c907ac9324a4f412c1688b95b6da80a504a7b7f1
2022-10-14 07:37:57 -07:00

29 lines
674 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.5.0"
authors = ["Facebook, Inc."]
edition = "2021"
[dependencies]
clap = { version = "^3", features = ["derive", "cargo"] }
shellexpand = "^2"
tar = "0.4.38"
serde = { version = "^1", features = ["derive"] }
serde_yaml = "0.9.9"
anyhow = "^1"
sha2 = "0.10.2"
data-encoding = "^2"
serde_json = "^1"
rayon = "^1.5"
indicatif = "^0.16"
xz2 = "0.1.7"
ignore = "0.4.18"
[dev-dependencies]
tempdir = "0.3.7"