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