[package]
edition = "2021"
name = "chant-cli"
version = "0.21.0"
build = "build.rs"
exclude = [
".chant/",
".github/",
"docs/",
"examples/",
"scripts/",
"*.log",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Spec execution platform for AI-assisted development"
homepage = "https://lex00.github.io/chant"
documentation = "https://lex00.github.io/chant"
readme = "README.md"
keywords = [
"cli",
"ai",
"automation",
"developer-tools",
"agents",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "Apache-2.0"
repository = "https://github.com/lex00/chant"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "chant"
path = "src/lib.rs"
[[bin]]
name = "chant"
path = "src/main.rs"
[[test]]
name = "common"
path = "tests/common.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[[test]]
name = "test_archive"
path = "tests/test_archive.rs"
[[test]]
name = "test_commands"
path = "tests/test_commands.rs"
[[test]]
name = "test_in_progress_status"
path = "tests/test_in_progress_status.rs"
[[test]]
name = "test_mcp_protocol"
path = "tests/test_mcp_protocol.rs"
[[test]]
name = "test_mcp_spec_list_archive"
path = "tests/test_mcp_spec_list_archive.rs"
[[test]]
name = "test_multi_repo"
path = "tests/test_multi_repo.rs"
[[test]]
name = "test_state_machine_lifecycle"
path = "tests/test_state_machine_lifecycle.rs"
[[test]]
name = "test_takeover"
path = "tests/test_takeover.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.atty]
version = "0.2"
[dependencies.chrono]
version = "0.4"
[dependencies.clap]
version = "4.0"
features = ["derive"]
[dependencies.clap_complete]
version = "4.0"
[dependencies.clap_mangen]
version = "0.2"
[dependencies.colored]
version = "2.0"
[dependencies.ctrlc]
version = "3.4"
[dependencies.dialoguer]
version = "0.11"
[dependencies.dirs]
version = "5.0"
[dependencies.glob]
version = "0.3"
[dependencies.indicatif]
version = "0.17"
[dependencies.jsonschema]
version = "0.26"
[dependencies.pulldown-cmark]
version = "0.10"
[dependencies.rand]
version = "0.8"
[dependencies.regex]
version = "1.10"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.shellexpand]
version = "3.0"
[dependencies.tempfile]
version = "3.0"
[dependencies.tera]
version = "1.20"
[dependencies.ureq]
version = "2"
features = [
"tls",
"json",
]
default-features = false
[dependencies.url]
version = "2"
[dev-dependencies.serial_test]
version = "3.0"
[target."cfg(unix)".dependencies.nix]
version = "0.29"
features = ["signal"]