[[bin]]
name = "tree"
path = "src/main.rs"
[dependencies.ansi_term]
version = "0.12.1"
[dependencies.clap]
features = ["derive"]
version = "4.5.36"
[dependencies.glob]
version = "0.3.2"
[dependencies.is_executable]
version = "1.0.1"
[dev-dependencies.assert_cmd]
version = "2.0"
[dev-dependencies.tempfile]
version = "3.2"
[lib]
name = "rust_tree"
path = "src/lib.rs"
[package]
authors = ["Peter Etelej <peter@etelej.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["command-line-utilities"]
description = """
tree is a cross-platform tree application and library that produces
an indented directory listing of files.
"""
edition = "2021"
homepage = "https://github.com/peteretelej/tree"
keywords = ["tree", "cli", "utility"]
license = "MIT"
name = "rust_tree"
readme = "README.md"
repository = "https://github.com/peteretelej/tree"
version = "1.2.2"
[target."cfg(windows)"]
[[test]]
name = "cli_unit_tests"
path = "tests/cli_unit_tests.rs"
[[test]]
name = "display_tests"
path = "tests/display_tests.rs"
[[test]]
name = "fromfile_formats_tests"
path = "tests/fromfile_formats_tests.rs"
[[test]]
name = "fromfile_unit_tests"
path = "tests/fromfile_unit_tests.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[[test]]
name = "main_integration_tests"
path = "tests/main_integration_tests.rs"
[[test]]
name = "path_normalization_tests"
path = "tests/path_normalization_tests.rs"
[[test]]
name = "traversal_tests"
path = "tests/traversal_tests.rs"
[[test]]
name = "unit_tests"
path = "tests/unit_tests.rs"
[[test]]
name = "utils_tests"
path = "tests/utils_tests.rs"
[[test]]
name = "utils_unit_tests"
path = "tests/utils_unit_tests.rs"