[[bin]]
name = "cb"
path = "src/bin/codebank.rs"
[[bin]]
name = "cb-mcp"
path = "src/bin/mcp.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.axum]
version = "0.8"
[dependencies.clap]
features = ["derive"]
version = "4.0"
[dependencies.ignore]
version = "0.4.23"
[dependencies.rmcp]
features = ["server", "transport-sse-server", "transport-io"]
version = "0.1.5"
[dependencies.schemars]
version = "0.8"
[dependencies.serde]
features = ["derive"]
version = "1.0"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
features = ["full"]
version = "1.0"
[dependencies.tokio-util]
version = "0.7"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
features = ["env-filter"]
version = "0.3"
[dependencies.tree-sitter]
version = "0.23"
[dependencies.tree-sitter-c]
version = "0.23"
[dependencies.tree-sitter-python]
version = "0.23"
[dependencies.tree-sitter-rust]
version = "0.23"
[dependencies.tree-sitter-typescript]
version = "0.23"
[dev-dependencies.tempfile]
version = "3.9"
[lib]
name = "codebank"
path = "src/lib.rs"
[package]
authors = ["Tyr Chen <tyr.chen@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["command-line-utilities", "development-tools", "parsing", "text-processing"]
description = """
A powerful code documentation generator that creates structured markdown documentation from your codebase.
Supports multiple languages including Rust, Python, TypeScript, and C with intelligent parsing and formatting.
Features test code filtering, summary generation, and customizable documentation strategies.
"""
documentation = "https://docs.rs/codebank"
edition = "2021"
exclude = ["fixtures/*", "examples/*", "tests/*", ".github/*", ".vscode/*"]
keywords = ["code", "documentation", "markdown", "generator", "parser"]
license = "MIT"
name = "codebank"
readme = "README.md"
repository = "https://github.com/tyrchen/codebank"
version = "0.2.1"