fd/Cargo.toml

38 lines
795 B
TOML
Raw Normal View History

2017-05-12 09:50:03 +00:00
[package]
2017-09-09 17:11:54 +00:00
name = "fd-find"
2017-10-04 21:38:01 +00:00
version = "4.0.0"
2017-05-12 09:50:03 +00:00
authors = ["David Peter <mail@david-peter.de>"]
2017-09-09 17:11:54 +00: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"
2017-10-14 10:04:57 +00:00
exclude = ["/benchmarks/*"]
2017-10-04 12:31:08 +00:00
build = "build.rs"
2017-09-09 17:11:54 +00:00
2017-09-27 19:47:41 +00:00
[badges]
appveyor = { repository = "sharkdp/fd" }
travis-ci = { repository = "sharkdp/fd" }
2017-09-09 17:11:54 +00:00
[[bin]]
name = "fd"
path = "src/main.rs"
2017-05-12 09:50:03 +00:00
[dependencies]
2017-05-12 21:37:09 +00:00
ansi_term = "0.9"
2017-09-09 08:04:34 +00:00
clap = "2.26.0"
2017-06-10 15:30:48 +00:00
atty = "0.2"
2017-05-12 09:50:03 +00:00
regex = "0.2"
regex-syntax = "0.4"
2017-05-15 20:38:34 +00:00
ignore = "0.2"
num_cpus = "1.6.2"
2017-10-04 12:31:08 +00:00
[build-dependencies]
clap = "2.26.0"
[dev-dependencies]
diff = "0.1"
2017-10-04 21:38:01 +00:00
tempdir = "0.3"