[package]
name = "rust_tree"
version = "1.3.0"
edition = "2021"
authors = ["Peter Etelej <peter@etelej.com>"]
description = """
tree is a cross-platform tree application and library that produces
an indented directory listing of files.
"""
keywords = ["tree", "cli", "utility"]
categories = ["command-line-utilities"]
license = "MIT"
homepage = "https://github.com/peteretelej/tree"
repository = "https://github.com/peteretelej/tree"
[dependencies]
clap = { version = "4.5.36", features = ["derive"] }
ansi_term = "0.12.1"
glob = "0.3.2"
is_executable = "1.0.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
[dev-dependencies]
assert_cmd = "2.0"
tempfile = "3.2"
[[bin]]
name = "tree"
path = "src/main.rs"
[target.'cfg(windows)']
rustflags = ["-C", "target-feature=+crt-static"]