2017-05-12 09:50:03 +00:00
|
|
|
[package]
|
|
|
|
authors = ["David Peter <mail@david-peter.de>"]
|
2017-10-14 16:04:11 +00:00
|
|
|
build = "build.rs"
|
|
|
|
categories = ["command-line-utilities"]
|
2017-09-09 17:11:54 +00:00
|
|
|
description = "fd is a simple, fast and user-friendly alternative to find."
|
2017-10-14 16:30:10 +00:00
|
|
|
exclude = ["/benchmarks/*"]
|
2017-09-09 17:11:54 +00:00
|
|
|
homepage = "https://github.com/sharkdp/fd"
|
2017-10-14 16:04:11 +00:00
|
|
|
keywords = [
|
|
|
|
"search",
|
|
|
|
"find",
|
|
|
|
"file",
|
|
|
|
"filesystem",
|
|
|
|
"tool",
|
|
|
|
]
|
2017-10-21 08:16:03 +00:00
|
|
|
license = "MIT/Apache-2.0"
|
2017-10-14 16:04:11 +00:00
|
|
|
name = "fd-find"
|
|
|
|
readme = "README.md"
|
|
|
|
repository = "https://github.com/sharkdp/fd"
|
2022-05-28 21:01:26 +00:00
|
|
|
version = "8.4.0"
|
2022-03-01 17:04:03 +00:00
|
|
|
edition= "2021"
|
2017-09-27 19:47:41 +00:00
|
|
|
|
2017-10-14 16:04:11 +00:00
|
|
|
[badges.appveyor]
|
|
|
|
repository = "sharkdp/fd"
|
|
|
|
|
|
|
|
[badges.travis-ci]
|
|
|
|
repository = "sharkdp/fd"
|
|
|
|
|
2020-04-03 08:35:30 +00:00
|
|
|
[[bin]]
|
|
|
|
name = "fd"
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
2017-10-14 16:04:11 +00:00
|
|
|
[build-dependencies]
|
2022-03-04 07:16:52 +00:00
|
|
|
clap = { version = "3.1", features = ["cargo"] }
|
2022-02-28 07:48:57 +00:00
|
|
|
clap_complete = "3.1"
|
2019-09-15 15:26:19 +00:00
|
|
|
version_check = "0.9"
|
2017-05-12 09:50:03 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2019-09-15 15:26:19 +00:00
|
|
|
ansi_term = "0.12"
|
2022-05-12 14:41:47 +00:00
|
|
|
argmax = "0.3.0"
|
2017-06-10 15:30:48 +00:00
|
|
|
atty = "0.2"
|
2018-08-19 16:50:41 +00:00
|
|
|
ignore = "0.4.3"
|
2022-01-03 16:47:20 +00:00
|
|
|
num_cpus = "1.13"
|
2022-08-01 20:11:11 +00:00
|
|
|
regex = "1.6.0"
|
2018-05-04 15:20:16 +00:00
|
|
|
regex-syntax = "0.6"
|
2021-09-01 23:28:52 +00:00
|
|
|
ctrlc = "3.2"
|
|
|
|
humantime = "2.1"
|
2022-08-01 20:10:50 +00:00
|
|
|
lscolors = "0.11"
|
2019-09-15 13:37:08 +00:00
|
|
|
globset = "0.4"
|
2020-04-03 18:55:14 +00:00
|
|
|
anyhow = "1.0"
|
2020-12-06 11:02:04 +00:00
|
|
|
dirs-next = "2.0"
|
2022-01-06 23:53:03 +00:00
|
|
|
normpath = "0.3.2"
|
2020-10-25 11:30:38 +00:00
|
|
|
chrono = "0.4"
|
2022-08-02 00:59:14 +00:00
|
|
|
once_cell = "1.13.0"
|
2017-10-04 21:19:30 +00:00
|
|
|
|
2018-01-01 11:15:39 +00:00
|
|
|
[dependencies.clap]
|
2022-03-04 07:16:52 +00:00
|
|
|
version = "3.1"
|
2022-02-18 08:21:00 +00:00
|
|
|
features = ["suggestions", "color", "wrap_help", "cargo", "unstable-grouped"]
|
2018-01-01 11:15:39 +00:00
|
|
|
|
2018-06-30 19:57:20 +00:00
|
|
|
[target.'cfg(unix)'.dependencies]
|
2020-12-06 11:02:04 +00:00
|
|
|
users = "0.11.0"
|
2022-08-01 20:10:50 +00:00
|
|
|
nix = { version = "0.24.2", default-features = false, features = ["signal"] }
|
2018-06-30 19:57:20 +00:00
|
|
|
|
2017-10-15 01:25:56 +00:00
|
|
|
[target.'cfg(all(unix, not(target_os = "redox")))'.dependencies]
|
|
|
|
libc = "0.2"
|
|
|
|
|
2020-05-19 14:07:12 +00:00
|
|
|
# FIXME: Re-enable jemalloc on macOS
|
|
|
|
# jemalloc is currently disabled on macOS due to a bug in jemalloc in combination with macOS
|
|
|
|
# Catalina. See https://github.com/sharkdp/fd/issues/498 for details.
|
2021-12-14 09:09:48 +00:00
|
|
|
[target.'cfg(all(not(windows), not(target_os = "android"), not(target_os = "macos"), not(target_os = "freebsd"), not(target_env = "musl"), not(target_arch = "riscv64")))'.dependencies]
|
2022-05-28 21:21:30 +00:00
|
|
|
jemallocator = {version = "0.5.0", optional = true}
|
2019-09-15 16:20:36 +00:00
|
|
|
|
2017-10-04 21:19:30 +00:00
|
|
|
[dev-dependencies]
|
|
|
|
diff = "0.1"
|
2017-10-04 21:38:01 +00:00
|
|
|
tempdir = "0.3"
|
2021-11-14 15:47:53 +00:00
|
|
|
filetime = "0.2"
|
2022-08-01 17:03:36 +00:00
|
|
|
test-case = "2.2"
|
2018-10-12 13:26:27 +00:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
lto = true
|
|
|
|
codegen-units = 1
|
2021-12-23 08:13:44 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
use-jemalloc = ["jemallocator"]
|
2021-12-14 09:09:48 +00:00
|
|
|
default = ["use-jemalloc"]
|