mirror of
https://github.com/ouch-org/ouch.git
synced 2025-06-06 11:35:45 +00:00
30 lines
964 B
TOML
30 lines
964 B
TOML
[package]
|
|
name = "ouch"
|
|
version = "0.1.0"
|
|
authors = ["Vinícius Rodrigues Miguel <vrmiguel99@gmail.com>"]
|
|
edition = "2018"
|
|
readme = "README.md"
|
|
homepage = "https://github.com/vrmiguel/ouch"
|
|
repository = "https://github.com/vrmiguel/ouch"
|
|
license = "MIT"
|
|
keywords = ["decompression", "compression", "zip", "tar", "gzip"]
|
|
categories = ["command-line-utilities", "compression", "encoding"]
|
|
description = "A command-line utility for easily compressing and decompressing files and directories."
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
colored = "2.0.0"
|
|
walkdir = "2.3.2"
|
|
clap = "2.33.3"
|
|
tar = "0.4.33"
|
|
xz2 = "0.1.6"
|
|
bzip2 = "0.4.2"
|
|
flate2 = "1.0.20"
|
|
|
|
# Keeping zip locally since upstream zip is staying on an older flate2 version
|
|
# in order to not increase MSRV, which is not something I particularly care about
|
|
# for ouch
|
|
zip = { version = "0.5.10", path = "./third-party/zip" }
|