[workspace]
members = ["expert_prompt_engineer", "st-protocol"]
exclude = ["marqant"]
[package]
name = "smart-tree"
version = "8.0.1"
edition = "2021"
authors = ["8bit-wraith", "Claude", "Omni", "8b-is Team"]
description = "Smart Tree - An intelligent, AI-friendly directory visualization tool"
repository = "https://github.com/8b-is/smart-tree"
license = "MIT"
readme = "README.md"
keywords = ["tree", "directory", "visualization", "ai", "cli"]
categories = ["command-line-utilities", "filesystem"]
default-run = "st"
autobins = false
exclude = [
"test_files/",
"test-dirs/",
"test/",
"tests/",
"tmp/",
"web/",
"docs/",
"examples/",
"api/",
".gemini/",
".cursorignore",
".mcp.json",
"demo.sh",
"save_consciousness.sh",
"import_claude_memories.sh",
"build_output.log",
"exportit.txt",
"Context.md",
"CONTEXT_SUMMARY.md",
"PR_SUMMARY.md",
"RELEASE_*.md",
"SMART_*.md",
"SMART-*.md",
"SMARTPASTCODE-*.md",
"MCP_*.md",
"TERMINAL_EXAMPLES.md",
"AI_ENHANCEMENTS.md",
"FEATURE_FLAGS.md",
"g.md",
"test",
"test_*",
"*.png",
"*.mq",
"Aye101/",
"aye-md/",
"engine/",
"Formula/",
"dxt/",
"hooks/",
"st-hook",
"st-hook/",
"/tools/",
"test_rename_project/",
"src/bin/mq.rs",
"src/bin/debug_mcp.rs",
]
[dependencies]
clap = { version = "4.5", features = ["derive", "env"] }
clap_complete = "4.5"
clap_mangen = "0.2"
anyhow = "1.0"
thiserror = "2.0"
walkdir = "2.5"
globset = "0.4"
glob = "0.3"
notify = { version = "6.1", features = ["serde"] }
dirs = "5.0"
shellexpand = "3.1"
which = "7.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
toml = "0.8"
csv = "1.3"
bincode = "1.3"
tokio = { version = "1.42", features = ["full"] }
async-trait = "0.1"
futures = "0.3"
futures-util = "0.3"
tokio-stream = { version = "0.1", features = ["sync"] }
axum = { version = "0.7", features = ["ws", "multipart", "macros"] }
reqwest = { version = "0.12", default-features = false, features = ["json", "stream", "rustls-tls", "blocking"] }
hyper = "1.7"
http = "1.3"
tower-http = { version = "0.5", features = ["cors"] }
regex = "1.10"
similar = "2.4"
bytes = "1"
flate2 = "1.0"
hex = "0.4"
base64 = "0.22"
sha2 = "0.10"
crc32fast = "1.4"
keyring = { version = "3", features = ["apple-native", "windows-native", "sync-secret-service"] }
colored = "2.1"
termimad = "0.26"
terminal_size = "0.3"
chrono = { version = "0.4", features = ["serde", "clock"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
humansize = "2.1"
rayon = "1.10"
once_cell = "1.19"
rand = "0.8"
uuid = { version = "1.10", features = ["v4", "serde"] }
whoami = "1.5"
dashmap = "6.1"
libc = "0.2"
fuzzy-matcher = "0.3"
portable-pty = "0.8"
open = "5.0"
ipnet = "2.9"
gix = { version = "0.73", default-features = false, features = ["blocking-network-client"] }
tree-sitter = "0.25"
tree-sitter-language = "0.1"
tree-sitter-rust = "0.23"
tree-sitter-python = "0.23"
tree-sitter-javascript = "0.23"
tree-sitter-typescript = "0.23"
tree-sitter-go = "0.23"
tree-sitter-java = "0.23"
tree-sitter-c-sharp = "0.23"
tree-sitter-cpp = "0.23"
tree-sitter-ruby = "0.23"
syn = { version = "2.0", features = ["full", "parsing"] }
quote = "1.0"
cc = "1.2"
shlex = "1.3"
marqant = { path = "marqant", version = "1.1.8" }
st-protocol = { path = "st-protocol", version = "0.1.0" }
ratatui = "0.25"
crossterm = "0.27"
syntect = "5.0"
artem = "2.0"
candle-core = { version = "0.8", optional = true }
candle-transformers = { version = "0.8", optional = true }
candle-nn = { version = "0.8", optional = true }
hf-hub = { version = "0.4", optional = true }
tokenizers = { version = "0.21", optional = true }
[lib]
name = "st"
path = "src/lib.rs"
[[bin]]
name = "st"
path = "src/main.rs"
[[bin]]
name = "std"
path = "src/bin/std.rs"
[[bin]]
name = "n8x"
path = "src/bin/n8x.rs"
[[bin]]
name = "m8"
path = "src/bin/m8.rs"
[[bin]]
name = "import-claude-memories"
path = "src/bin/import_claude_memories.rs"
[dev-dependencies]
tempfile = "3.10"
assert_cmd = "2.0"
predicates = "3.1"
[features]
default = ["full"]
candle = ["candle-core", "candle-transformers", "candle-nn", "hf-hub", "tokenizers"]
voice = []
full = ["candle"]
full-voice = ["full", "voice"]
[profile.release]
lto = true
codegen-units = 1
strip = true
opt-level = 3