[package]
edition = "2024"
name = "agent-spec"
version = "1.2.0"
build = "build.rs"
exclude = [".superpowers/**"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Intent compiler for AI agent coding: human intent compiles through requirement IR into verifiable task contracts, mechanically verified against the code"
homepage = "https://github.com/ZhangHanDong/agent-spec"
readme = "README.md"
license = "MIT"
repository = "https://github.com/ZhangHanDong/agent-spec"
[features]
default = []
mir = ["rust-atlas/mir"]
[[bin]]
name = "agent-spec"
path = "src/main.rs"
[[test]]
name = "contract_guard_workflow"
path = "tests/contract_guard_workflow.rs"
[dependencies.agent-spec-code-graph-provider]
version = "0.1.0"
[dependencies.blake3]
version = "1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.getrandom]
version = "0.4"
[dependencies.rust-atlas]
version = "0.3.0"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1.49"
features = ["full"]
[lints.clippy]
expect_used = "deny"
unwrap_used = "deny"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "deny"