[package]
edition = "2021"
name = "parallel-disk-usage"
version = "0.22.0"
authors = ["khai96_ <hvksmr1996@gmail.com>"]
build = false
include = [
"/src",
"/cli",
"/tests",
"/Cargo.toml",
"/README.md",
"/USAGE.md",
"/LICENSE",
"/template/ai-instructions",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Highly parallelized, blazing fast directory tree analyzer"
documentation = "https://docs.rs/parallel-disk-usage"
readme = "README.md"
keywords = [
"pdu",
"dust",
"dutree",
"size",
"chart",
]
categories = [
"command-line-utilities",
"filesystem",
]
license = "Apache-2.0"
repository = "https://github.com/KSXGitHub/parallel-disk-usage.git"
[features]
ai-instructions = ["clap/derive"]
cli = [
"clap/derive",
"clap_complete",
"clap-utilities",
"json",
]
cli-completions = ["cli"]
default = ["cli"]
json = [
"serde/derive",
"serde_json",
]
[lib]
name = "parallel_disk_usage"
path = "src/lib.rs"
[[bin]]
name = "pdu"
path = "cli/main.rs"
required-features = ["cli"]
[[bin]]
name = "pdu-ai-instructions"
path = "cli/ai_instructions.rs"
required-features = ["ai-instructions"]
[[bin]]
name = "pdu-completions"
path = "cli/completions.rs"
required-features = ["cli-completions"]
[[bin]]
name = "pdu-man-page"
path = "cli/man_page.rs"
required-features = ["cli"]
[[bin]]
name = "pdu-usage-md"
path = "cli/usage_md.rs"
required-features = ["cli"]
[[test]]
name = "_utils"
path = "tests/_utils.rs"
[[test]]
name = "args_fraction"
path = "tests/args_fraction.rs"
[[test]]
name = "bytes_format"
path = "tests/bytes_format.rs"
[[test]]
name = "cli_errors"
path = "tests/cli_errors.rs"
[[test]]
name = "data_tree_reflection"
path = "tests/data_tree_reflection.rs"
[[test]]
name = "flag_combinations"
path = "tests/flag_combinations.rs"
[[test]]
name = "fs_tree_builder"
path = "tests/fs_tree_builder.rs"
[[test]]
name = "hardlinks_deduplication"
path = "tests/hardlinks_deduplication.rs"
[[test]]
name = "hardlinks_deduplication_multi_args"
path = "tests/hardlinks_deduplication_multi_args.rs"
[[test]]
name = "hardlinks_without_deduplication"
path = "tests/hardlinks_without_deduplication.rs"
[[test]]
name = "json"
path = "tests/json.rs"
[[test]]
name = "one_file_system"
path = "tests/one_file_system.rs"
[[test]]
name = "os_string_display"
path = "tests/os_string_display.rs"
[[test]]
name = "sync_ai_instructions"
path = "tests/sync_ai_instructions.rs"
[[test]]
name = "sync_completions"
path = "tests/sync_completions.rs"
[[test]]
name = "sync_help"
path = "tests/sync_help.rs"
[[test]]
name = "sync_man_page"
path = "tests/sync_man_page.rs"
[[test]]
name = "sync_usage_md"
path = "tests/sync_usage_md.rs"
[[test]]
name = "tree_builder"
path = "tests/tree_builder.rs"
[[test]]
name = "usual_cli"
path = "tests/usual_cli.rs"
[[test]]
name = "visualizer"
path = "tests/visualizer.rs"
[dependencies.assert-cmp]
version = "0.3.0"
[dependencies.clap]
version = "4.5.60"
optional = true
[dependencies.clap-utilities]
version = "0.3.0"
optional = true
[dependencies.clap_complete]
version = "4.5.66"
optional = true
[dependencies.dashmap]
version = "6.1.0"
[dependencies.derive_more]
version = "2.1.1"
features = ["full"]
[dependencies.derive_setters]
version = "0.1.9"
[dependencies.fmt-iter]
version = "0.2.1"
[dependencies.into-sorted]
version = "0.0.3"
[dependencies.itertools]
version = "0.14.0"
[dependencies.pipe-trait]
version = "0.4.0"
[dependencies.rayon]
version = "1.10.0"
[dependencies.rounded-div]
version = "0.1.4"
[dependencies.serde]
version = "1.0.228"
optional = true
[dependencies.serde_json]
version = "1.0.149"
optional = true
[dependencies.smart-default]
version = "0.7.1"
[dependencies.sysinfo]
version = "0.38.2"
[dependencies.terminal_size]
version = "0.4.3"
[dependencies.text-block-macros]
version = "0.2.0"
[dependencies.zero-copy-pads]
version = "0.2.0"
[dev-dependencies.build-fs-tree]
version = "0.8.1"
[dev-dependencies.command-extra]
version = "1.0.0"
[dev-dependencies.libc]
version = "0.2.182"
[dev-dependencies.maplit]
version = "1.0.2"
[dev-dependencies.normalize-path]
version = "0.2.1"
[dev-dependencies.pretty_assertions]
version = "1.4.1"
[dev-dependencies.rand]
version = "0.10.0"
[dev-dependencies.which]
version = "8.0.2"