[package]
edition = "2024"
rust-version = "1.85"
name = "decapod"
version = "0.36.1"
build = "build.rs"
exclude = [
".decapod/*",
"dist/*",
"target/*",
"constitution_embed/*",
"assets/*.mp4",
"tests/fixtures/*",
"tests/golden_vectors/*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Decapod is a Rust-built governance runtime for AI agents: repo-native state, enforced workflow, proof gates, safe coordination."
homepage = "https://github.com/DecapodLabs/decapod"
readme = "README.md"
keywords = [
"rust",
"ai",
"ai-agents",
"control-plane",
"orchestration",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/DecapodLabs/decapod"
[lib]
name = "decapod"
path = "src/lib.rs"
[[bin]]
name = "decapod"
path = "src/main.rs"
[[test]]
name = "agent_rpc_suite"
path = "tests/agent_rpc_suite.rs"
[[test]]
name = "assurance_harness"
path = "tests/assurance_harness.rs"
[[test]]
name = "canonical_evidence_gate"
path = "tests/canonical_evidence_gate.rs"
[[test]]
name = "chaos_replay"
path = "tests/chaos_replay.rs"
[[test]]
name = "cli_contracts"
path = "tests/cli_contracts.rs"
[[test]]
name = "core_tests"
path = "tests/core/core.rs"
[[test]]
name = "crash_consistency"
path = "tests/crash_consistency.rs"
[[test]]
name = "entrypoint_correctness"
path = "tests/entrypoint_correctness.rs"
[[test]]
name = "examples_interop"
path = "tests/examples_interop.rs"
[[test]]
name = "gatling"
path = "tests/gatling.rs"
[[test]]
name = "lcm_determinism"
path = "tests/lcm_determinism.rs"
[[test]]
name = "plugins_decide_tests"
path = "tests/plugins/decide.rs"
[[test]]
name = "plugins_federation_tests"
path = "tests/plugins/federation.rs"
[[test]]
name = "plugins_health_tests"
path = "tests/plugins/health.rs"
[[test]]
name = "plugins_obligation_tests"
path = "tests/plugins/obligation.rs"
[[test]]
name = "plugins_policy_tests"
path = "tests/plugins/policy.rs"
[[test]]
name = "plugins_teammate_tests"
path = "tests/plugins/teammate.rs"
[[test]]
name = "plugins_todo_tests"
path = "tests/plugins/todo.rs"
[[test]]
name = "rpc_golden_vectors"
path = "tests/rpc_golden_vectors.rs"
[[test]]
name = "schema_markdown"
path = "tests/schema_markdown.rs"
[[test]]
name = "state_commit_phase_gate"
path = "tests/state_commit_phase_gate.rs"
[[test]]
name = "todo_enforcement"
path = "tests/todo_enforcement.rs"
[[test]]
name = "validate_termination"
path = "tests/validate_termination.rs"
[[test]]
name = "verify_mvp"
path = "tests/verify_mvp.rs"
[[bench]]
name = "perf_1_1"
path = "benches/perf_1_1.rs"
harness = false
[[bench]]
name = "perf_1_2"
path = "benches/perf_1_2.rs"
harness = false
[[bench]]
name = "perf_1_3"
path = "benches/perf_1_3.rs"
harness = false
[dependencies.anyhow]
version = "1.0"
[dependencies.chrono]
version = "0.4"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.colored]
version = "3.1"
[dependencies.rayon]
version = "1.10"
[dependencies.regex]
version = "1.10"
[dependencies.rusqlite]
version = "0.38"
[dependencies.rust-embed]
version = "8.5"
features = ["include-exclude"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "2.0"
[dependencies.tiktoken-rs]
version = "0.9"
[dependencies.toml]
version = "1.0"
[dependencies.ulid]
version = "1.1"
[dependencies.which]
version = "8.0"
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[dev-dependencies.regex]
version = "1.10"
[dev-dependencies.serde_json]
version = "1.0"
[dev-dependencies.tempfile]
version = "3.10"