Summary: Original commit changeset: 9d09d9660dfa This breaks the build on GitHub. Original Phabricator Diff: D49772851 Reviewed By: antonk52 Differential Revision: D49829328 fbshipit-source-id: 88f4a29abe148b1427ed9af5bd8b6d0c14066343
29 lines
675 B
TOML
29 lines
675 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 = "^3"
|
|
tar = "0.4.39"
|
|
serde = { version = "^1", features = ["derive"] }
|
|
serde_yaml = "0.9.25"
|
|
anyhow = "^1"
|
|
sha2 = "0.10.7"
|
|
data-encoding = "^2"
|
|
serde_json = "^1"
|
|
rayon = "^1.8"
|
|
indicatif = "^0.17"
|
|
xz2 = "0.1.7"
|
|
ignore = "0.4.20"
|
|
|
|
[dev-dependencies]
|
|
tempdir = "0.3.7"
|