[package]
name = "coding-tools"
version = "0.1.0"
edition = "2024"
rust-version = "1.88"
license = "Apache-2.0"
description = "Declarative, agent-friendly CLI tools behind one 'ct' command: search, view, verifiable edits, and framed command tests."
readme = "README.md"
authors = ["Jonathan Shook <jshook@gmail.com>"]
keywords = ["cli", "search", "grep", "refactor", "agent"]
categories = ["command-line-utilities", "development-tools"]
default-run = "ct"
exclude = [".idea/", ".github/"]
repository = "https://github.com/jshook/coding-tools"
homepage = "https://github.com/jshook/coding-tools"
documentation = "https://docs.rs/coding-tools"
[lib]
name = "coding_tools"
path = "src/lib.rs"
[[bin]]
name = "ct"
path = "src/bin/ct.rs"
[[bin]]
name = "ct-search"
path = "src/bin/ct-search.rs"
[[bin]]
name = "ct-test"
path = "src/bin/ct-test.rs"
[[bin]]
name = "ct-view"
path = "src/bin/ct-view.rs"
[[bin]]
name = "ct-edit"
path = "src/bin/ct-edit.rs"
[[bin]]
name = "ct-patch"
path = "src/bin/ct-patch.rs"
[[bin]]
name = "ct-tree"
path = "src/bin/ct-tree.rs"
[dependencies]
clap = { version = "4.6.1", features = ["derive"] }
regex = "1.12.3"
walkdir = "2.5.0"
serde_json = "1.0.150"
jsonc-parser = "0.26"
yaml-edit = "0.2.1"
[profile.release]
strip = true