-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathCargo.toml
42 lines (38 loc) · 975 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
36
37
38
39
40
41
42
[package]
name = "lolcate-rs"
version = "0.10.0"
description = "A comically fast way of indexing and querying your filesystem. Replaces locate / mlocate / updatedb."
documentation = "https://github.com/ngirard/lolcate-rs/blob/master/README.md"
readme = "README.md"
repository = "https://github.com/ngirard/lolcate-rs"
keywords = ["filesystem-indexer", "search", "regex"]
categories = ["command-line-utilities", "filesystem"]
license = "GPL-3.0"
authors = ["Nicolas Girard <[email protected]>"]
edition = "2018"
exclude = [
"/misc/**",
"/mk_test_tree.sh",
"notes.txt",
"/test/**"
]
[dependencies]
bstr = "0.2"
clap = "2"
crossbeam-channel = "0.5"
dirs = "3.0"
ignore = "0.4"
lazy_static = "1.4.0"
lz4 = "1"
regex = "1"
serde = { version = "1.0", features = ["derive"] }
termcolor = "1"
toml = "0.5"
walkdir = "2"
[target.'cfg(not(windows))'.dependencies]
expanduser = "1.2"
[[bin]]
path = "src/main.rs"
name = "lolcate"
[profile.release]
lto = true