[package]
edition = "2024"
rust-version = "1.85"
name = "pfind"
version = "0.1.0"
authors = ["Eli Peter <elicpeter@gmail.com>"]
build = false
include = [
"src/**/*.rs",
"Cargo.toml",
"README.md",
"LICENSE-MIT",
"LICENSE-APACHE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Parallel directory walker tuned for APFS. ~5x faster than fd/rg on macOS via work-stealing and per-volume worker tuning."
homepage = "https://github.com/elicpeter/pfind"
documentation = "https://docs.rs/pfind"
readme = "README.md"
keywords = [
"find",
"fd",
"filesystem",
"parallel",
"walker",
]
categories = [
"command-line-utilities",
"filesystem",
"concurrency",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/elicpeter/pfind"
[[bin]]
name = "pfind"
path = "src/main.rs"
[dependencies.clap]
version = "4.5.53"
features = ["derive"]
[dependencies.crossbeam]
version = "0.8.4"
[dependencies.num_cpus]
version = "1.17.0"
[profile.bench]
debug = 2
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
debug = 0
panic = "abort"
incremental = false
strip = "symbols"