codoc 0.1.0

Unified documentation parser for Ruby and TypeScript codebases
Documentation
[package]
name = "codoc"
version = "0.1.0"
edition = "2021"
rust-version = "1.77"
description = "Unified documentation parser for Ruby and TypeScript codebases"
license = "MIT"
readme = "README.md"
repository = "https://github.com/sudoremo/codoc"
keywords = ["documentation", "parser", "ruby", "typescript", "yardoc"]
categories = ["development-tools", "parser-implementations"]
exclude = ["CLAUDE.md"]

[dependencies]
# Tree-sitter for parsing
tree-sitter = "0.22"
tree-sitter-ruby = "0.21"
tree-sitter-typescript = "0.21"

# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"

# CLI
clap = { version = "4.4", features = ["derive"] }
colored = "2.1"

# Error handling
thiserror = "1.0"
anyhow = "1.0"

# File system
walkdir = "2.4"
glob = "0.3"

# Date/time for generatedAt
chrono = { version = "0.4", features = ["serde"] }

[dev-dependencies]
# Testing
assert_cmd = "2.0"
predicates = "3.0"
tempfile = "3.8"

[profile.release]
lto = true
strip = true