Files
flipper/packer/Cargo.toml
Andres Suarez baf9d9ab37 Replace tempdir with tempfile
Summary:
`tempdir` has been deprecated since 2018:
https://github.com/rust-lang-deprecated/tempdir/pull/46

It's functionality was merged into `tempfile` with minor tweaks:

- Methods names: `new` -> `with_prefix`, `new_in` -> `with_prefix_in`.
- `with_prefix_in`'s args order is reversed.
- Temp dirs no longer have a period between the prefix and the random
  name (before `foo.123abc`, now `foo123abc`).

Reviewed By: shayne-fletcher

Differential Revision: D50526255

fbshipit-source-id: bdb3b53a6b09a09c70c8e2533ad2cea46ee2842b
2023-10-21 12:15:21 -07:00

29 lines
676 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]
tempfile = "3.8.0"