mirror of
https://github.com/sharkdp/fd.git
synced 2024-10-31 19:41:01 +01:00
37 lines
771 B
TOML
37 lines
771 B
TOML
[package]
|
|
name = "fd-find"
|
|
version = "4.0.0"
|
|
authors = ["David Peter <mail@david-peter.de>"]
|
|
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"]
|
|
build = "build.rs"
|
|
|
|
[badges]
|
|
appveyor = { repository = "sharkdp/fd" }
|
|
travis-ci = { repository = "sharkdp/fd" }
|
|
|
|
[[bin]]
|
|
name = "fd"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
ansi_term = "0.9"
|
|
clap = "2.26.0"
|
|
atty = "0.2"
|
|
regex = "0.2"
|
|
ignore = "0.2"
|
|
num_cpus = "1.6.2"
|
|
|
|
[build-dependencies]
|
|
clap = "2.26.0"
|
|
|
|
[dev-dependencies]
|
|
diff = "0.1"
|
|
tempdir = "0.3"
|