tree2 1.0.9

A beautiful and feature-rich directory tree visualization tool with colors and emojis
bin = [
    { name = "tree2", path = "src/main.rs" },
]

[package]
name = "tree2"
version = "1.0.9"
edition = "2021"
description = "A beautiful and feature-rich directory tree visualization tool with colors and emojis"
authors = [
    "Hadi Cahyadi <cumulus13@gmail.com>",
]
license = "MIT"
repository = "https://github.com/cumulus13/tree2"
documentation = "https://docs.rs/tree2"
homepage = "https://github.com/cumulus13/tree2"
readme = "README.md"
keywords = [
    "tree",
    "directory",
    "filesystem",
    "visualization",
    "cli",
]
categories = [
    "command-line-utilities",
    "filesystem",
]
exclude = [
    "build.bat",
    "gitignore_backup/",
    ".pt/",
    "__version__.py",
    "target/",
    "tree2.exe",
    "tree2.sublime-project",
    "tree2.sublime-workspace",
]

[package.metadata.docs.rs]
targets = [
    "x86_64-unknown-linux-gnu",
]

[dependencies]
dunce = "1.0.4"
clap-version-flag = "1.0.5"
cli-clipboard = "0.4"
regex = "1.10"

[dependencies.clap]
version = "4.0"
features = [
    "derive",
]