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",
|
|
|
|
]
|
2023-07-20 09:29:10 +02:00
|
|
|
license = "MIT OR Apache-2.0"
|
2017-10-14 18:04:11 +02:00
|
|
|
name = "fd-find"
|
|
|
|
readme = "README.md"
|
|
|
|
repository = "https://github.com/sharkdp/fd"
|
2024-08-19 06:55:28 +02:00
|
|
|
version = "10.2.0"
|
2022-03-01 18:04:03 +01:00
|
|
|
edition= "2021"
|
2024-04-12 05:14:11 +02:00
|
|
|
rust-version = "1.77.2"
|
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]
|
2019-09-15 17:26:19 +02:00
|
|
|
version_check = "0.9"
|
2017-05-12 11:50:03 +02:00
|
|
|
|
|
|
|
[dependencies]
|
2024-04-01 19:31:00 +02:00
|
|
|
aho-corasick = "1.1"
|
2024-02-01 21:50:41 +01:00
|
|
|
nu-ansi-term = "0.50"
|
2022-09-11 20:11:53 +02:00
|
|
|
argmax = "0.3.1"
|
2024-02-01 19:34:09 +01:00
|
|
|
ignore = "0.4.22"
|
2024-07-01 23:04:01 +02:00
|
|
|
regex = "1.10.5"
|
2023-11-01 18:19:54 +01:00
|
|
|
regex-syntax = "0.8"
|
2021-09-02 01:28:52 +02:00
|
|
|
ctrlc = "3.2"
|
|
|
|
humantime = "2.1"
|
2019-09-15 15:37:08 +02:00
|
|
|
globset = "0.4"
|
2020-04-03 20:55:14 +02:00
|
|
|
anyhow = "1.0"
|
2023-04-22 04:26:23 +02:00
|
|
|
etcetera = "0.8"
|
2023-04-01 20:39:39 +02:00
|
|
|
normpath = "1.1.1"
|
2024-06-01 19:56:11 +02:00
|
|
|
crossbeam-channel = "0.5.13"
|
2024-08-01 19:45:44 +02:00
|
|
|
clap_complete = {version = "4.5.8", optional = true}
|
2022-11-11 14:36:16 +01:00
|
|
|
faccess = "0.2.4"
|
2017-10-04 23:19:30 +02:00
|
|
|
|
2018-01-01 12:15:39 +01:00
|
|
|
[dependencies.clap]
|
2024-08-01 19:45:49 +02:00
|
|
|
version = "4.5.13"
|
2023-10-18 07:00:56 +02:00
|
|
|
features = ["suggestions", "color", "wrap_help", "cargo", "derive"]
|
2018-01-01 12:15:39 +01:00
|
|
|
|
2022-11-30 10:23:52 +01:00
|
|
|
[dependencies.chrono]
|
2024-05-01 19:31:34 +02:00
|
|
|
version = "0.4.38"
|
2022-11-30 10:23:52 +01:00
|
|
|
default-features = false
|
|
|
|
features = ["std", "clock"]
|
|
|
|
|
2022-12-01 07:38:24 +01:00
|
|
|
[dependencies.lscolors]
|
2024-07-01 19:47:08 +02:00
|
|
|
version = "0.18"
|
2022-12-01 07:38:24 +01:00
|
|
|
default-features = false
|
|
|
|
features = ["nu-ansi-term"]
|
|
|
|
|
2018-06-30 21:57:20 +02:00
|
|
|
[target.'cfg(unix)'.dependencies]
|
2024-06-08 23:36:02 +02:00
|
|
|
nix = { version = "0.29.0", default-features = false, features = ["signal", "user", "hostname"] }
|
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.
|
2023-04-14 10:22:42 +02:00
|
|
|
[target.'cfg(all(not(windows), not(target_os = "android"), not(target_os = "macos"), not(target_os = "freebsd"), not(target_os = "openbsd"), not(all(target_env = "musl", target_pointer_width = "32")), not(target_arch = "riscv64")))'.dependencies]
|
2023-10-01 19:23:38 +02:00
|
|
|
jemallocator = {version = "0.5.4", optional = true}
|
2019-09-15 18:20:36 +02:00
|
|
|
|
2017-10-04 23:19:30 +02:00
|
|
|
[dev-dependencies]
|
|
|
|
diff = "0.1"
|
2024-03-01 18:41:57 +01:00
|
|
|
tempfile = "3.10"
|
2021-11-14 16:47:53 +01:00
|
|
|
filetime = "0.2"
|
2023-12-01 18:25:13 +01:00
|
|
|
test-case = "3.3"
|
2018-10-12 15:26:27 +02:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
lto = true
|
2023-03-25 21:59:23 +01:00
|
|
|
strip = true
|
2018-10-12 15:26:27 +02:00
|
|
|
codegen-units = 1
|
2021-12-23 09:13:44 +01:00
|
|
|
|
|
|
|
[features]
|
|
|
|
use-jemalloc = ["jemallocator"]
|
2022-06-17 10:08:24 +02:00
|
|
|
completions = ["clap_complete"]
|
|
|
|
base = ["use-jemalloc"]
|
|
|
|
default = ["use-jemalloc", "completions"]
|