-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
50 lines (44 loc) · 1.07 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
48
49
50
[package]
name = "tgrep"
version = "1.6.10"
authors = ["Dmytro Milinevskyi <dmilinevskyi@gmail.com>"]
description = "Toy grep that honors .gitignore"
license = "Unlicense"
edition = "2021" # Also set in .rustfmt.toml
repository = "https://github.com/niamster/tgrep"
homepage = "https://github.com/niamster/tgrep"
readme = "README.md"
keywords = ["grep", "egrep", "search", "pattern", "gitignore"]
categories = ["command-line-utilities", "text-processing"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "tgrep"
path = "src/lib.rs"
bench = false
[[bin]]
name = "tgrep"
path = "src/main.rs"
test = false
bench = false
[[bench]]
name = "patterns"
harness = false
[dev-dependencies]
criterion = "0.3"
[dependencies]
log = "0.4"
env_logger = "0.8"
structopt = "0.3"
glob = "0.3"
regex = "1"
ansi_term = "0.12"
futures = { version = "0.3", features = ["thread-pool"] }
crossbeam = "0.7"
term_size = "0.3"
anyhow = "1.0"
path-clean = "0.1"
memmap2 = "0.2"
streaming-iterator = "0.1"
memchr = "2.3"
content_inspector = "0.2"
libc = "0.2"