[package]
edition = "2021"
name = "sdd-layer"
version = "0.24.3"
build = "build.rs"
include = [
"AGENTS.md",
"CHANGELOG.md",
"CLAUDE.md",
"Cargo.lock",
"Cargo.toml",
"README.md",
"VERSION",
"build.rs",
"sdd.config.example.yaml",
"src/**/*",
"adapters/**/*",
"clients/**/*",
"docs/**/*",
"examples/**/*",
"plugins/**/*",
"presets/**/*",
"schemas/**/*",
"templates/**/*",
"tests/**/*",
".github/workflows/sdd.yml",
".agents/**/*",
".claude/**/*",
".codex/**/*",
".cursor/agents/**/*",
".cursor/commands/**/*",
".cursor/model-routing.yaml",
".cursor/rules/**/*",
".cursor/skills/**/*",
".devin/agents/**/*",
".devin/config.json",
".devin/skills/**/*",
".kiro/agents/**/*",
".kiro/hooks/**/*",
".kiro/settings/**/*",
".kiro/skills/**/*",
".kiro/steering/**/*",
".opencode/agents/**/*",
".opencode/commands/**/*",
".opencode/model-routing.yaml",
".opencode/plugins/**/*",
".opencode/skills/**/*",
".trae/commands/**/*",
".trae/rules/**/*",
".trae/skills/**/*",
"bot/README.md",
"bot/install.js",
"bot/jest.config.js",
"bot/package-lock.json",
"bot/package.json",
"bot/sdd-bot.config.example.yaml",
"bot/src/**/*",
"bot/tsconfig.json",
"!**/canvas-fonts/*.ttf",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Spec-Driven Development CLI and agent harness"
readme = "README.md"
license = "MIT"
repository = "https://github.com/alexandesigner/sdd-layer"
[features]
acp-agent = ["dep:agent-client-protocol"]
default = []
mcp-rmcp = ["dep:rmcp"]
rig-adapter = ["dep:rig-core"]
[[bin]]
name = "sdd"
path = "src/main.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[dependencies.agent-client-protocol]
version = "1.0.1"
optional = true
[dependencies.anyhow]
version = "1.0"
[dependencies.chrono]
version = "0.4"
features = ["clock"]
default-features = false
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.crossterm]
version = "0.28"
[dependencies.jsonwebtoken]
version = "9.3"
[dependencies.ratatui]
version = "0.29"
[dependencies.regex]
version = "1.11"
[dependencies.reqwest]
version = "0.12"
features = [
"blocking",
"json",
"rustls-tls",
]
default-features = false
[dependencies.rig-core]
version = "0.38.2"
optional = true
default-features = false
[dependencies.rmcp]
version = "1.7.0"
features = ["server"]
optional = true
default-features = false
[dependencies.rusqlite]
version = "0.32"
features = ["bundled"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.sha2]
version = "0.10"
[dependencies.similar]
version = "2.6"
[dependencies.unicode-normalization]
version = "0.1"
[dependencies.walkdir]
version = "2.5"
[dev-dependencies.ratatui]
version = "0.29"
[dev-dependencies.tempfile]
version = "3.14"
[profile.release]
strip = true