43 lines
962 B
TOML
43 lines
962 B
TOML
[package]
|
|
name = "techdebt-tracker-cli"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["TechDebt Tracker Contributors"]
|
|
description = "A CLI tool to analyze and track technical debt in codebases"
|
|
repository = "https://7000pct.gitea.bloupla.net/7000pctAUTO/techdebt-tracker-cli"
|
|
keywords = ["cli", "tui", "technical-debt", "tree-sitter"]
|
|
categories = ["development-tools", "visualization"]
|
|
|
|
[dependencies]
|
|
clap = { version = "4.4", features = ["derive", "cargo"] }
|
|
ratatui = "0.26"
|
|
tree-sitter = "0.22"
|
|
serde = { version = "1.0", features = ["derive", "rc"] }
|
|
regex = "1.10"
|
|
anyhow = "1.0"
|
|
toml = "0.8"
|
|
serde_yaml = "0.9"
|
|
ignore = "0.4"
|
|
crossterm = "0.28"
|
|
ansi-to-tui = "4"
|
|
thiserror = "2"
|
|
unicode-width = "0.1"
|
|
dirs = "5"
|
|
chrono = { version = "0.4", features = ["std"] }
|
|
glob = "0.3"
|
|
|
|
[dev-dependencies]
|
|
assert_cmd = "2"
|
|
predicates = "3"
|
|
tempfile = "3"
|
|
|
|
[features]
|
|
default = []
|
|
dev = ["ratatui/crossterm"]
|
|
|
|
[profile.release]
|
|
opt-level = 3
|
|
lto = true
|
|
|
|
[workspace]
|