dirwalk 1.1.1

Platform-optimized recursive directory walker with metadata
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.85"
name = "dirwalk"
version = "1.1.1"
authors = ["Michael AD Karlsson <dev@madk.se>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Platform-optimized recursive directory walker with metadata"
homepage = "https://codeberg.org/madk/dirwalk"
readme = "README.md"
keywords = [
    "filesystem",
    "directory",
    "walker",
    "metadata",
    "walkdir",
]
categories = [
    "filesystem",
    "command-line-utilities",
]
license = "MIT"
repository = "https://codeberg.org/madk/dirwalk"

[features]
cli = [
    "serde",
    "dep:clap",
    "dep:csv",
    "dep:time",
    "dep:terminal_size",
    "dep:unicode-width",
    "dep:lscolors",
]
default = []
serde = [
    "dep:serde",
    "dep:serde_json",
]

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

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

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

[[test]]
name = "filter_sort_group"
path = "tests/filter_sort_group.rs"

[[test]]
name = "fixture"
path = "tests/fixture.rs"

[[test]]
name = "scan_dir"
path = "tests/scan_dir.rs"

[[test]]
name = "walk"
path = "tests/walk.rs"

[dependencies.clap]
version = "4"
features = ["derive"]
optional = true

[dependencies.csv]
version = "1"
optional = true

[dependencies.globset]
version = "0.4"

[dependencies.ignore]
version = "0.4"

[dependencies.lscolors]
version = "0.20"
optional = true
default-features = false

[dependencies.natord]
version = "1"

[dependencies.rayon]
version = "1"

[dependencies.serde]
version = "1"
optional = true

[dependencies.serde_json]
version = "1"
optional = true

[dependencies.terminal_size]
version = "0.4"
optional = true

[dependencies.time]
version = "0.3"
features = [
    "formatting",
    "macros",
]
optional = true
default-features = false

[dependencies.unicode-width]
version = "0.2"
optional = true

[dev-dependencies.tempfile]
version = "3"

[target.'cfg(target_os = "windows")'.dependencies.windows]
version = "0.61"
features = [
    "Win32_Storage_FileSystem",
    "Win32_Foundation",
    "Win32_Security",
    "Win32_System_Console",
]

[target."cfg(unix)".dependencies.libc]
version = "0.2"