mirror of
https://github.com/sharkdp/fd
synced 2024-11-02 15:11:27 +00:00
53 lines
1 KiB
TOML
53 lines
1 KiB
TOML
[package]
|
|
authors = ["David Peter <mail@david-peter.de>"]
|
|
build = "build.rs"
|
|
categories = ["command-line-utilities"]
|
|
description = "fd is a simple, fast and user-friendly alternative to find."
|
|
exclude = ["/benchmarks/*"]
|
|
homepage = "https://github.com/sharkdp/fd"
|
|
keywords = [
|
|
"search",
|
|
"find",
|
|
"file",
|
|
"filesystem",
|
|
"tool",
|
|
]
|
|
license = "MIT/Apache-2.0"
|
|
name = "fd-find"
|
|
readme = "README.md"
|
|
repository = "https://github.com/sharkdp/fd"
|
|
version = "7.1.0"
|
|
|
|
[[bin]]
|
|
name = "fd"
|
|
path = "src/main.rs"
|
|
[badges.appveyor]
|
|
repository = "sharkdp/fd"
|
|
|
|
[badges.travis-ci]
|
|
repository = "sharkdp/fd"
|
|
|
|
[build-dependencies]
|
|
clap = "2.31.2"
|
|
version_check = "0.1.3"
|
|
|
|
[dependencies]
|
|
ansi_term = "0.11"
|
|
atty = "0.2"
|
|
ignore = "0.4.3"
|
|
lazy_static = "1.1.0"
|
|
num_cpus = "1.8"
|
|
regex = "1.0.0"
|
|
regex-syntax = "0.6"
|
|
ctrlc = "3.1"
|
|
|
|
[dependencies.clap]
|
|
version = "2.31.2"
|
|
features = ["suggestions", "color", "wrap_help"]
|
|
|
|
[target.'cfg(all(unix, not(target_os = "redox")))'.dependencies]
|
|
libc = "0.2"
|
|
|
|
[dev-dependencies]
|
|
diff = "0.1"
|
|
tempdir = "0.3"
|