-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathCargo.toml
More file actions
52 lines (47 loc) · 1.11 KB
/
Cargo.toml
File metadata and controls
52 lines (47 loc) · 1.11 KB
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
48
49
50
51
52
[package]
edition = "2024"
name = "hck"
version = "0.11.5"
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.100"
bstr = "1.12.1"
clap = { version = "4.5.53", features = ["derive"] }
env_logger = "0.11.8"
flate2 = { version = "1.1.5", features = [
"zlib-ng-compat",
], default-features = false }
gzp = { version = "2.0.2", default-features = false, features = [
"deflate_zlib_ng",
"libdeflate",
] }
grep-cli = "0.1.12"
lazy_static = "1.5.0"
log = "0.4.28"
memmap = { package = "memmap2", version = "0.9.9" }
memchr = "2.7.6"
num_cpus = "1.17.0"
regex = "1.12.2"
ripline = "0.1.0"
termcolor = "1.4.1"
thiserror = "2.0.17"
git-version = "0.3.9"
[dev-dependencies]
tempfile = "3.23.0"
rstest = "0.26.1"