ouch/Cargo.toml
Vinícius Rodrigues Miguel e18dbbd667 Update Cargo.toml
2021-03-24 00:12:07 -03:00

29 lines
941 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"
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 = { path = "./third-party/zip" }