[package] name = "rust_tree" version = "0.1.4" edition = "2021" authors = ["Peter Etelej "] 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" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] walkdir = "2.3" clap = "3.0" ansi_term = "0.12" term = "0.7" glob = "0.3.1" is_executable = "1.0.1" [dev-dependencies] tempfile = "3.2" [[bin]] name = "tree" path = "src/main.rs"