-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
35 lines (30 loc) · 937 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[package]
name = "xcompress"
version = "0.12.5"
authors = ["Magic Len <[email protected]>"]
edition = "2021"
rust-version = "1.70"
repository = "https://github.com/magiclen/xcompress"
homepage = "https://magiclen.org/xcompress"
keywords = ["compression", "decompression", "zip", "archive", "tar"]
categories = ["command-line-utilities"]
description = "XCompress is a free file archiver utility on Linux, providing multi-format archiving to and extracting from ZIP, Z, GZIP, BZIP2, LZ, XZ, LZMA, 7ZIP, TAR, RAR and ZSTD."
license = "MIT"
include = ["src/**/*", "Cargo.toml", "README.md", "LICENSE"]
[profile.release]
lto = true
codegen-units = 1
panic = "abort"
strip = true
[dependencies]
clap = { version = "4", features = ["derive"] }
concat-with = "0.2"
terminal_size = "0.3"
anyhow = "1"
byte-unit = "5"
execute = "0.2"
num_cpus = "1"
scanner-rust = "2"
[dependencies.path-absolutize]
version = "3"
features = ["once_cell_cache"]