Summary: Couldn't do this because we were stuck on an old version of digest internally with breaking changes. Now there's a `sha2-9` option to make it build. Reviewed By: mweststrate Differential Revision: D26404582 fbshipit-source-id: 9851de3439ea263eaddb558daaf4cf9e73b062cc
28 lines
635 B
TOML
28 lines
635 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.2.1"
|
|
authors = ["Facebook, Inc."]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
clap = "2.33.3"
|
|
shellexpand = "2.1.0"
|
|
tar = "0.4.32"
|
|
serde = { version = "1.0.123", features = ["derive"] }
|
|
serde_yaml = "0.8.16"
|
|
anyhow = "1.0.38"
|
|
sha2 = "0.9.3"
|
|
data-encoding = "2.3.2"
|
|
serde_json = "1.0.61"
|
|
rayon = "1.5.0"
|
|
indicatif = "0.15.0"
|
|
xz2 = "0.1.6"
|
|
|
|
[dev-dependencies]
|
|
tempdir = "0.3.7"
|