2017-05-12 11:50:03 +02:00
|
|
|
[package]
|
2017-09-09 19:11:54 +02:00
|
|
|
name = "fd-find"
|
2017-09-09 18:56:03 +02:00
|
|
|
version = "3.0.0"
|
2017-05-12 11:50:03 +02:00
|
|
|
authors = ["David Peter <mail@david-peter.de>"]
|
2017-09-09 19:11:54 +02:00
|
|
|
description = "fd is a simple, fast and user-friendly alternative to find."
|
|
|
|
homepage = "https://github.com/sharkdp/fd"
|
|
|
|
repository = "https://github.com/sharkdp/fd"
|
|
|
|
readme = "README.md"
|
|
|
|
keywords = ["search", "find", "file", "filesystem", "tool"]
|
|
|
|
categories = ["command-line-utilities"]
|
|
|
|
license = "MIT"
|
|
|
|
exclude = ["benchmarks"]
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "fd"
|
|
|
|
path = "src/main.rs"
|
2017-05-12 11:50:03 +02:00
|
|
|
|
|
|
|
[dependencies]
|
2017-05-12 23:37:09 +02:00
|
|
|
ansi_term = "0.9"
|
2017-09-09 10:04:34 +02:00
|
|
|
clap = "2.26.0"
|
2017-06-10 17:30:48 +02:00
|
|
|
atty = "0.2"
|
2017-05-12 11:50:03 +02:00
|
|
|
regex = "0.2"
|
2017-05-15 22:38:34 +02:00
|
|
|
ignore = "0.2"
|
2017-09-09 16:08:46 +02:00
|
|
|
num_cpus = "1.6.2"
|