forked from sstadick/hck
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
47 lines (42 loc) · 1.09 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
[package]
edition = "2021"
name = "hck"
version = "0.10.2"
authors = ["Seth Stadick <sstadick@gmail.com>"]
license = "Unlicense OR MIT"
repository = "https://github.com/sstadick/hck"
description = "A sharp cut(1) clone."
documentation = "https://docs.rs/hck"
readme = "README.md"
categories = ["text-processing", "command-line-interface"]
keywords = ["text", "cli"]
[lib]
name = "hcklib"
path = "src/lib/mod.rs"
[[bin]]
name = "hck"
path = "src/main.rs"
[profile.release]
lto = "fat"
codegen-units = 1
[dependencies]
anyhow = "1.0.89"
bstr = "1.10.0"
clap = { version = "4.5.18", features = ["derive"] }
env_logger = "0.11.5"
flate2 = { version = "1.0.33", features = ["zlib-ng-compat"], default-features = false }
gzp = { version = "0.11.3", default-features = false, features = ["deflate_zlib_ng","libdeflate"] }
grep-cli = "0.1.10"
lazy_static = "1.5.0"
log = "0.4.22"
memmap = { package = "memmap2", version = "0.9.5" }
memchr = "2.7.4"
num_cpus = "1.16.0"
regex = "1.10.6"
ripline = "0.1.0"
termcolor = "1.4.1"
thiserror = "1.0.64"
git-version = "0.3.9"
[dev-dependencies]
tempfile = "3.12.0"
rstest = "0.22.0"