parallel-disk-usage 0.24.0

Highly parallelized, blazing fast directory tree analyzer
Documentation
[package]
name = "parallel-disk-usage"
description = "Highly parallelized, blazing fast directory tree analyzer"
version = "0.24.0"
authors = ["khai96_ <hvksmr1996@gmail.com>"]
edition = "2024"
readme = "README.md"
license = "Apache-2.0"
documentation = "https://docs.rs/parallel-disk-usage"
repository = "https://github.com/KSXGitHub/parallel-disk-usage.git"
keywords = [
  "pdu",
  "dust",
  "dutree",
  "size",
  "chart",
]
categories = [
  "command-line-utilities",
  "filesystem",
]
include = [
  "/src",
  "/cli",
  "/Cargo.toml",
  "/README.md",
  "/USAGE.md",
  "/LICENSE",
]

[lib]
name = "parallel_disk_usage"
path = "src/lib.rs"

[[bin]]
name = "pdu"
path = "cli/main.rs"
required-features = ["cli"]

[[bin]]
name = "pdu-completions"
path = "cli/completions.rs"
required-features = ["cli-completions"]

[[bin]]
name = "pdu-man-page"
path = "cli/man_page.rs"
required-features = ["man-page"]

[[bin]]
name = "pdu-usage-md"
path = "cli/usage_md.rs"
required-features = ["usage-md"]

[[bin]]
name = "pdu-ai-instructions"
path = "cli/ai_instructions.rs"
required-features = ["ai-instructions"]

[features]
default = ["cli"]
json = ["serde/derive", "serde_json"]
cli = ["clap/derive", "clap_complete", "clap-utilities", "json"]
cli-completions = ["cli"]
man-page = ["cli"]
usage-md = ["cli"]
ai-instructions = ["clap/derive"]

[dependencies]
assert-cmp = "0.3.0"
clap = { version = "4.6.1", optional = true }
clap_complete = { version = "4.6.5", optional = true }
clap-utilities = { version = "0.3.0", optional = true }
dashmap = "6.2.1"
derive_more = { version = "2.1.1", features = ["full"] }
derive_setters = "0.1.9"
fmt-iter = "0.2.1"
into-sorted = "0.0.3"
itertools = "0.14.0"
pipe-trait = "0.4.0"
rayon = "1.12.0"
rounded-div = "0.1.4"
serde = { version = "1.0.228", optional = true }
serde_json = { version = "1.0.150", optional = true }
smart-default = "0.7.1"
sysinfo = "0.39.2"
terminal_size = "0.4.4"
text-block-macros = "0.2.0"
zero-copy-pads = "0.2.0"

[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(dylint_lib, values("perfectionist"))'] }

[lints.clippy]
clone_on_ref_ptr = "warn"
if_then_some_else_none = "warn"
unnecessary_lazy_evaluations = "warn"

[dev-dependencies]
build-fs-tree = "0.8.1"
command-extra = "1.0.0"
libc = "0.2.186"
maplit = "1.0.2"
normalize-path = "0.2.1"
pretty_assertions = "1.4.1"
rand = "0.10.1"
which = "8.0.2"