2017-05-12 09:50:03 +00:00
|
|
|
[package]
|
|
|
|
authors = ["David Peter <mail@david-peter.de>"]
|
2017-10-14 16:04:11 +00:00
|
|
|
build = "build.rs"
|
|
|
|
categories = ["command-line-utilities"]
|
2017-09-09 17:11:54 +00:00
|
|
|
description = "fd is a simple, fast and user-friendly alternative to find."
|
2017-10-14 16:30:10 +00:00
|
|
|
exclude = ["/benchmarks/*"]
|
2017-09-09 17:11:54 +00:00
|
|
|
homepage = "https://github.com/sharkdp/fd"
|
2017-10-14 16:04:11 +00:00
|
|
|
keywords = [
|
|
|
|
"search",
|
|
|
|
"find",
|
|
|
|
"file",
|
|
|
|
"filesystem",
|
|
|
|
"tool",
|
|
|
|
]
|
2017-10-21 08:16:03 +00:00
|
|
|
license = "MIT/Apache-2.0"
|
2017-10-14 16:04:11 +00:00
|
|
|
name = "fd-find"
|
|
|
|
readme = "README.md"
|
|
|
|
repository = "https://github.com/sharkdp/fd"
|
2018-02-10 15:46:42 +00:00
|
|
|
version = "6.3.0"
|
2017-09-27 19:47:41 +00:00
|
|
|
|
2017-09-09 17:11:54 +00:00
|
|
|
[[bin]]
|
|
|
|
name = "fd"
|
|
|
|
path = "src/main.rs"
|
2017-10-14 16:04:11 +00:00
|
|
|
[badges.appveyor]
|
|
|
|
repository = "sharkdp/fd"
|
|
|
|
|
|
|
|
[badges.travis-ci]
|
|
|
|
repository = "sharkdp/fd"
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
clap = "2.26.0"
|
2017-11-13 15:40:30 +00:00
|
|
|
version_check = "0.1.3"
|
2017-05-12 09:50:03 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2017-10-20 08:26:56 +00:00
|
|
|
ansi_term = "0.9"
|
2017-06-10 15:30:48 +00:00
|
|
|
atty = "0.2"
|
2017-05-15 20:38:34 +00:00
|
|
|
ignore = "0.2"
|
2017-12-10 05:40:13 +00:00
|
|
|
lazy_static = "1"
|
2017-09-09 14:08:46 +00:00
|
|
|
num_cpus = "1.6.2"
|
2017-10-14 16:04:11 +00:00
|
|
|
regex = "0.2"
|
2017-10-14 16:30:10 +00:00
|
|
|
regex-syntax = "0.4"
|
2017-11-22 22:05:09 +00:00
|
|
|
ctrlc = "3.0"
|
2017-10-04 21:19:30 +00:00
|
|
|
|
2018-01-01 11:15:39 +00:00
|
|
|
[dependencies.clap]
|
|
|
|
version = "2.26.0"
|
|
|
|
features = ["suggestions", "color", "wrap_help"]
|
|
|
|
|
2017-10-15 01:25:56 +00:00
|
|
|
[target.'cfg(all(unix, not(target_os = "redox")))'.dependencies]
|
|
|
|
libc = "0.2"
|
|
|
|
|
2017-10-20 08:26:56 +00:00
|
|
|
[target.'cfg(windows)'.dependencies]
|
2017-10-26 19:44:40 +00:00
|
|
|
kernel32-sys = "0.2"
|
|
|
|
winapi = "0.2"
|
2017-10-20 08:26:56 +00:00
|
|
|
|
2017-10-04 21:19:30 +00:00
|
|
|
[dev-dependencies]
|
|
|
|
diff = "0.1"
|
2017-10-04 21:38:01 +00:00
|
|
|
tempdir = "0.3"
|