[package]
edition = "2024"
rust-version = "1.85"
name = "decapod"
version = "0.0.5"
build = "build.rs"
exclude = [
".decapod/*",
"dist/*",
"target/*",
"constitution_embed/*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "🦀 Decapod is a Rust-built, repo-native control-plane kernel for AI swarms—safe shared state, enforced truth, and loop-agnostic orchestration."
homepage = "https://github.com/DecapodLabs/decapod"
readme = "README.md"
keywords = [
"rust",
"ai",
"ai-agents",
"control-plane",
"orchestration",
]
categories = [
"development-tools",
"command-line-utilities",
]
license = "MIT"
repository = "https://github.com/DecapodLabs/decapod"
[lib]
name = "decapod"
path = "src/lib.rs"
[[bin]]
name = "decapod"
path = "src/main.rs"
[[test]]
name = "core_tests"
path = "tests/core/core.rs"
[[test]]
name = "plugins_policy_tests"
path = "tests/plugins/policy.rs"
[[test]]
name = "plugins_todo_tests"
path = "tests/plugins/todo.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.chrono]
version = "0.4"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.colored]
version = "2.0"
[dependencies.regex]
version = "1.10"
[dependencies.rusqlite]
version = "0.31"
[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 = "1.0"
[dependencies.tiktoken-rs]
version = "0.5"
[dependencies.ulid]
version = "1.1"
[dependencies.which]
version = "6.0"
[dev-dependencies.tempfile]
version = "3.10"