[package]
edition = "2021"
rust-version = "1.80"
name = "retree"
version = "0.6.0"
authors = ["M4dPac"]
build = false
include = [
"src/**/*",
"benches/**/*.rs",
"tests/**/*",
"Cargo.toml",
"Cargo.lock",
"README.md",
"README.ru.md",
"LICENSE",
"CHANGELOG.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fast, cross-platform GNU tree compatible directory listing"
readme = "README.md"
keywords = [
"tree",
"directory",
"cli",
"windows",
"gnu-tree",
]
categories = [
"command-line-utilities",
"filesystem",
]
license = "MIT"
repository = "https://github.com/M4dPac/retree"
[features]
tree_compat = []
[lib]
name = "retree"
path = "src/lib.rs"
[[bin]]
name = "rt"
path = "src/main.rs"
[[test]]
name = "basic"
path = "tests/basic.rs"
[[test]]
name = "display"
path = "tests/display.rs"
[[test]]
name = "errors"
path = "tests/errors.rs"
[[test]]
name = "filtering"
path = "tests/filtering.rs"
[[test]]
name = "golden"
path = "tests/golden.rs"
[[test]]
name = "i18n"
path = "tests/i18n.rs"
[[test]]
name = "max_entries"
path = "tests/max_entries.rs"
[[test]]
name = "output_format"
path = "tests/output_format.rs"
[[test]]
name = "parallel"
path = "tests/parallel.rs"
[[test]]
name = "security"
path = "tests/security.rs"
[[test]]
name = "sorting"
path = "tests/sorting.rs"
[[test]]
name = "streaming_text"
path = "tests/streaming_text.rs"
[[test]]
name = "streams"
path = "tests/streams.rs"
[[test]]
name = "tree_compat"
path = "tests/tree_compat.rs"
[[test]]
name = "windows_unsafe"
path = "tests/windows_unsafe.rs"
[[bench]]
name = "retree_perf"
path = "benches/retree_perf.rs"
harness = false
[[bench]]
name = "retree_perf_xlarge"
path = "benches/retree_perf_xlarge.rs"
harness = false
[dependencies.chrono]
version = "0.4"
features = [
"std",
"clock",
]
default-features = false
[dependencies.clap]
version = "4.6"
features = [
"derive",
"env",
"unicode",
"string",
]
[dependencies.clap_complete]
version = "4"
[dependencies.glob]
version = "0.3"
[dependencies.quick-xml]
version = "0.39"
features = ["serialize"]
[dependencies.rayon]
version = "1"
[dependencies.rustc-hash]
version = "2"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
features = ["preserve_order"]
[dependencies.thiserror]
version = "2"
[dependencies.unicode-width]
version = "0.2"
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.criterion]
version = "0.8"
[dev-dependencies.predicates]
version = "3"
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.strum]
version = "0.28"
features = ["derive"]
[dev-dependencies.tempfile]
version = "3"
[target."cfg(unix)".dependencies.uzers]
version = "0.12"
[target."cfg(windows)".dependencies.windows-sys]
version = "0.61"
features = [
"Win32_Foundation",
"Win32_Globalization",
"Win32_Storage_FileSystem",
"Win32_System_Console",
"Win32_System_IO",
"Win32_System_Ioctl",
"Win32_Security",
"Win32_Security_Authorization",
"Win32_System_SystemServices",
]
[profile.release]
lto = true
codegen-units = 1
panic = "abort"
strip = true