[package]
edition = "2021"
name = "ccc"
version = "0.1.2"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Call coding CLIs (opencode, claude, codex, kimi, etc.) from Rust programs"
readme = "README.md"
keywords = [
"cli",
"opencode",
"claude",
"codex",
"coding-agent",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "Unlicense"
repository = "https://github.com/clankercode/ccc"
[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 = "parser_tests"
path = "tests/parser_tests.rs"
[[test]]
name = "run_artifacts_tests"
path = "tests/run_artifacts_tests.rs"
[dependencies.serde_json]
version = "1"