[package]
edition = "2021"
name = "ccc"
version = "0.2.0"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Unified Rust library and CLI for invoking coding-agent CLIs with shared parsing, planning, and transcript utilities"
documentation = "https://docs.rs/ccc"
readme = "README.md"
keywords = [
"cli",
"codex",
"claude",
"opencode",
"automation",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "Unlicense"
repository = "https://github.com/clankercode/ccc"
[package.metadata.docs.rs]
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "call_coding_clis"
path = "src/lib.rs"
[[bin]]
name = "ccc"
path = "src/bin/ccc.rs"
[[test]]
name = "config_tests"
path = "tests/config_tests.rs"
[[test]]
name = "help_tests"
path = "tests/help_tests.rs"
[[test]]
name = "json_output_tests"
path = "tests/json_output_tests.rs"
[[test]]
name = "library_api_tests"
path = "tests/library_api_tests.rs"
[[test]]
name = "parser_tests"
path = "tests/parser_tests.rs"
[[test]]
name = "run_artifacts_tests"
path = "tests/run_artifacts_tests.rs"
[dependencies.serde_json]
version = "1"