-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (28 loc) · 756 Bytes
/
Cargo.toml
File metadata and controls
33 lines (28 loc) · 756 Bytes
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
[package]
name = "find-files"
version = "0.1.8"
description = "Find Files (ff) utility recursively searches the files whose names match the specified RegExp pattern in the provided directory (defaults to the current directory if not provided)."
authors = ["Vishal Telangre <the@vishaltelangre.com>"]
license = "Unlicense OR MIT"
readme = "README.md"
repository = "https://github.com/vishaltelangre/ff"
[build-dependencies]
lazy_static = "1.1.0"
clap = "2.31.2"
[dependencies]
walkdir = "2"
ansi_term = "0.11"
regex = "1"
atty = "0.2"
lazy_static = "1.1.0"
ignore = "0.4"
num_cpus = "1.0"
[dependencies.clap]
version = "2.32"
features = [ "suggestions", "color" ]
[[bin]]
name = "ff"
path = "src/main.rs"
[profile.release]
lto = true
codegen-units = 1