[package]
edition = "2021"
name = "cbmman"
version = "0.1.3"
build = false
include = [
"src/lib.rs",
"cbmman.rs",
"Cargo.toml",
"README.md",
"LICENSE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Interactive TUI manager for codebase-memory-mcp: index, query, and monitor codebase knowledge graphs from the terminal."
homepage = "https://github.com/handyutils/cbmman"
documentation = "https://docs.rs/cbmman"
readme = "README.md"
keywords = [
"tui",
"mcp",
"knowledge-graph",
"codebase",
"ratatui",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/handyutils/cbmman"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "cbmman"
path = "src/lib.rs"
[[bin]]
name = "cbmman"
path = "cbmman.rs"
[dependencies.crossterm]
version = "0.28"
[dependencies.ratatui]
version = "0.29"
[dependencies.serde_json]
version = "1"