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