[package]
edition = "2021"
name = "tree2md"
version = "0.9.2"
authors = ["zawakin"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Like the tree command, but outputs in Markdown. Optimized for AI agents."
homepage = "https://github.com/zawakin/tree2md"
readme = "README.md"
keywords = [
"markdown",
"tree",
"directory",
"cli",
"tool",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/zawakin/tree2md"
[[bin]]
name = "tree2md"
path = "src/main.rs"
[[test]]
name = "emoji_test"
path = "tests/emoji_test.rs"
[[test]]
name = "exclude_pattern_test"
path = "tests/exclude_pattern_test.rs"
[[test]]
name = "filtering_test"
path = "tests/filtering_test.rs"
[[test]]
name = "fixtures"
path = "tests/fixtures.rs"
[[test]]
name = "gitignore_test"
path = "tests/gitignore_test.rs"
[[test]]
name = "include_directory_test"
path = "tests/include_directory_test.rs"
[[test]]
name = "include_exclude_priority_test"
path = "tests/include_exclude_priority_test.rs"
[[test]]
name = "include_pattern_test"
path = "tests/include_pattern_test.rs"
[[test]]
name = "level_edge_case_test"
path = "tests/level_edge_case_test.rs"
[[test]]
name = "max_chars_test"
path = "tests/max_chars_test.rs"
[[test]]
name = "pipe_output_test"
path = "tests/pipe_output_test.rs"
[[test]]
name = "safety_test"
path = "tests/safety_test.rs"
[[test]]
name = "stats_test"
path = "tests/stats_test.rs"
[dependencies.atty]
version = "0.2"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.dirs]
version = "5.0"
[dependencies.glob]
version = "0.3"
[dependencies.globset]
version = "0.4"
[dependencies.ignore]
version = "0.4"
[dependencies.once_cell]
version = "1.19"
[dependencies.pathdiff]
version = "0.2"
[dependencies.toml]
version = "0.8"
[dependencies.unicode-width]
version = "0.1"
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.predicates]
version = "3"
[dev-dependencies.tempfile]
version = "3.10"
[target."cfg(unix)".dependencies.libc]
version = "0.2"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true