[package]
edition = "2024"
rust-version = "1.90.0"
name = "fd-find"
version = "10.4.2"
authors = ["David Peter <mail@david-peter.de>"]
build = false
exclude = ["/benchmarks/*"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "fd is a simple, fast and user-friendly alternative to find."
homepage = "https://github.com/sharkdp/fd"
documentation = "https://docs.rs/fd-find"
readme = "README.md"
keywords = [
"search",
"find",
"file",
"filesystem",
"tool",
]
categories = ["command-line-utilities"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/sharkdp/fd"
[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/v{ version }/{ name }-v{ version }-{ target }.{ archive-format }"
bin-dir = "{ bin }-v{ version }-{ target }/{ bin }{ binary-ext }"
pkg-fmt = "tgz"
[package.metadata.binstall.overrides.x86_64-pc-windows-msvc]
pkg-fmt = "zip"
[package.metadata.binstall.overrides.x86_64-pc-windows-gnu]
pkg-fmt = "zip"
[package.metadata.binstall.overrides.i686-pc-windows-msvc]
pkg-fmt = "zip"
[package.metadata.binstall.overrides.aarch64-pc-windows-msvc]
pkg-fmt = "zip"
[badges.appveyor]
repository = "sharkdp/fd"
[badges.travis-ci]
repository = "sharkdp/fd"
[features]
base = ["use-jemalloc"]
completions = ["clap_complete"]
default = [
"use-jemalloc",
"completions",
]
use-jemalloc = ["tikv-jemallocator"]
[[bin]]
name = "fd"
path = "src/main.rs"
[[test]]
name = "tests"
path = "tests/tests.rs"
[dependencies.aho-corasick]
version = "1.1"
[dependencies.anyhow]
version = "1.0"
[dependencies.argmax]
version = "0.4.0"
[dependencies.clap]
version = "4.5.54"
features = [
"suggestions",
"color",
"wrap_help",
"cargo",
"derive",
]
[dependencies.clap_complete]
version = "4.5.62"
optional = true
[dependencies.crossbeam-channel]
version = "0.5.15"
[dependencies.ctrlc]
version = "3.5"
[dependencies.etcetera]
version = "0.11"
[dependencies.faccess]
version = "0.2.4"
[dependencies.globset]
version = "0.4"
[dependencies.ignore]
version = "0.4.25"
[dependencies.jiff]
version = "0.2.18"
[dependencies.lscolors]
version = "0.21"
features = ["nu-ansi-term"]
default-features = false
[dependencies.normpath]
version = "1.1.1"
[dependencies.nu-ansi-term]
version = "0.50"
[dependencies.regex]
version = "1.12.2"
[dependencies.regex-syntax]
version = "0.8"
[dev-dependencies.diff]
version = "0.1"
[dev-dependencies.filetime]
version = "0.2"
[dev-dependencies.tempfile]
version = "3.24"
[dev-dependencies.test-case]
version = "3.3"
[target.'cfg(all(not(windows), not(target_os = "android"), not(target_os = "macos"), not(target_os = "freebsd"), not(target_os = "openbsd"), not(target_os = "illumos"), not(all(target_env = "musl", target_pointer_width = "32")), not(target_arch = "riscv64")))'.dependencies.tikv-jemallocator]
version = "0.6.0"
optional = true
[target.'cfg(all(unix, not(target_os = "redox")))'.dependencies.libc]
version = "0.2"
[target."cfg(unix)".dependencies.nix]
version = "0.31.1"
features = [
"signal",
"user",
"hostname",
]
default-features = false
[profile.debugging]
debug = 2
inherits = "dev"
[profile.dev]
debug = "line-tables-only"
[profile.dev.package."*"]
debug = 0
[profile.release]
lto = true
codegen-units = 1
strip = true