[package]
edition = "2024"
rust-version = "1.88"
name = "dua-core"
version = "3.3.0"
authors = ["Sebastian Thiel <sebastian.thiel@icloud.com"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fast parallel filesystem traversal iterators"
readme = false
license = "MIT"
repository = "https://github.com/Byron/dua-cli"
[lib]
name = "dua_core"
path = "src/lib.rs"
[[test]]
name = "dua"
path = "tests/dua.rs"
[dependencies.crossbeam]
version = "0.8"
[dev-dependencies.tempfile]
version = "3.27.0"
[target.'cfg(target_os = "macos")'.dependencies.libc]
version = "0.2.186"
[target."cfg(windows)".dependencies.windows-sys]
version = "0.61.1"
features = [
"Win32_Foundation",
"Win32_Security",
"Win32_Storage_FileSystem",
]
[lints.clippy]
cast_possible_truncation = "allow"
cast_precision_loss = "allow"
enum_glob_use = "allow"
fn_params_excessive_bools = "allow"
format_push_string = "allow"
large_enum_variant = "allow"
missing_errors_doc = "allow"
missing_fields_in_debug = "allow"
needless_pass_by_value = "allow"
redundant_closure_for_method_calls = "allow"
too_many_lines = "allow"
[lints.clippy.all]
level = "warn"
priority = -2
[lints.clippy.pedantic]
level = "warn"
priority = -1