2017-05-12 11:50:03 +02:00
|
|
|
[package]
|
|
|
|
authors = ["David Peter <mail@david-peter.de>"]
|
2017-10-14 18:04:11 +02:00
|
|
|
build = "build.rs"
|
|
|
|
categories = ["command-line-utilities"]
|
2017-09-09 19:11:54 +02:00
|
|
|
description = "fd is a simple, fast and user-friendly alternative to find."
|
2017-10-14 18:30:10 +02:00
|
|
|
exclude = ["/benchmarks/*"]
|
2017-09-09 19:11:54 +02:00
|
|
|
homepage = "https://github.com/sharkdp/fd"
|
2017-10-14 18:04:11 +02:00
|
|
|
keywords = [
|
|
|
|
"search",
|
|
|
|
"find",
|
|
|
|
"file",
|
|
|
|
"filesystem",
|
|
|
|
"tool",
|
|
|
|
]
|
2017-10-21 10:16:03 +02:00
|
|
|
license = "MIT/Apache-2.0"
|
2017-10-14 18:04:11 +02:00
|
|
|
name = "fd-find"
|
|
|
|
readme = "README.md"
|
|
|
|
repository = "https://github.com/sharkdp/fd"
|
2022-01-29 16:49:09 +01:00
|
|
|
version = "8.3.2"
|
2019-01-05 18:18:47 +01:00
|
|
|
edition= "2018"
|
2017-09-27 21:47:41 +02:00
|
|
|
|
2017-10-14 18:04:11 +02:00
|
|
|
[badges.appveyor]
|
|
|
|
repository = "sharkdp/fd"
|
|
|
|
|
|
|
|
[badges.travis-ci]
|
|
|
|
repository = "sharkdp/fd"
|
|
|
|
|
2020-04-03 10:35:30 +02:00
|
|
|
[[bin]]
|
|
|
|
name = "fd"
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
2017-10-14 18:04:11 +02:00
|
|
|
[build-dependencies]
|
2022-01-04 08:35:49 +01:00
|
|
|
clap = "3.0"
|
|
|
|
clap_complete = "3.0"
|
2019-09-15 17:26:19 +02:00
|
|
|
version_check = "0.9"
|
2017-05-12 11:50:03 +02:00
|
|
|
|
|
|
|
[dependencies]
|
2019-09-15 17:26:19 +02:00
|
|
|
ansi_term = "0.12"
|
2017-06-10 17:30:48 +02:00
|
|
|
atty = "0.2"
|
2018-08-19 18:50:41 +02:00
|
|
|
ignore = "0.4.3"
|
2022-01-03 17:47:20 +01:00
|
|
|
num_cpus = "1.13"
|
2021-08-08 11:43:43 +02:00
|
|
|
regex = "1.5.4"
|
2018-05-04 17:20:16 +02:00
|
|
|
regex-syntax = "0.6"
|
2021-09-02 01:28:52 +02:00
|
|
|
ctrlc = "3.2"
|
|
|
|
humantime = "2.1"
|
2021-11-02 05:41:56 +01:00
|
|
|
lscolors = "0.8"
|
2019-09-15 15:37:08 +02:00
|
|
|
globset = "0.4"
|
2020-04-03 20:55:14 +02:00
|
|
|
anyhow = "1.0"
|
2020-12-06 12:02:04 +01:00
|
|
|
dirs-next = "2.0"
|
2022-01-07 00:53:03 +01:00
|
|
|
normpath = "0.3.2"
|
2020-10-25 12:30:38 +01:00
|
|
|
chrono = "0.4"
|
2022-01-03 17:25:06 +01:00
|
|
|
once_cell = "1.9.0"
|
2017-10-04 23:19:30 +02:00
|
|
|
|
2018-01-01 12:15:39 +01:00
|
|
|
[dependencies.clap]
|
2022-01-04 08:35:49 +01:00
|
|
|
version = "3.0"
|
|
|
|
features = ["suggestions", "color", "wrap_help", "cargo"]
|
2018-01-01 12:15:39 +01:00
|
|
|
|
2018-06-30 21:57:20 +02:00
|
|
|
[target.'cfg(unix)'.dependencies]
|
2020-12-06 12:02:04 +01:00
|
|
|
users = "0.11.0"
|
2022-01-03 17:26:00 +01:00
|
|
|
nix = "0.23.1"
|
2018-06-30 21:57:20 +02:00
|
|
|
|
2017-10-15 03:25:56 +02:00
|
|
|
[target.'cfg(all(unix, not(target_os = "redox")))'.dependencies]
|
|
|
|
libc = "0.2"
|
|
|
|
|
2020-05-19 16:07:12 +02: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 10:09:48 +01: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]
|
2021-12-23 09:13:44 +01:00
|
|
|
jemallocator = {version = "0.3.0", optional = true}
|
2019-09-15 18:20:36 +02:00
|
|
|
|
2017-10-04 23:19:30 +02:00
|
|
|
[dev-dependencies]
|
|
|
|
diff = "0.1"
|
2017-10-04 23:38:01 +02:00
|
|
|
tempdir = "0.3"
|
2021-11-14 16:47:53 +01:00
|
|
|
filetime = "0.2"
|
|
|
|
test-case = "1.2"
|
2018-10-12 15:26:27 +02:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
lto = true
|
|
|
|
codegen-units = 1
|
2021-12-23 09:13:44 +01:00
|
|
|
|
|
|
|
[features]
|
|
|
|
use-jemalloc = ["jemallocator"]
|
2021-12-14 10:09:48 +01:00
|
|
|
default = ["use-jemalloc"]
|