[package]
edition = "2021"
name = "agentcontract"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust implementation of the AgentContract specification — behavioral contracts for AI agents"
homepage = "https://github.com/agentcontract/spec"
documentation = "https://docs.rs/agentcontract"
readme = "README.md"
keywords = [
"ai",
"agent",
"contract",
"governance",
"llm",
]
categories = [
"development-tools",
"api-bindings",
]
license = "Apache-2.0"
repository = "https://github.com/agentcontract/agentcontract-rs"
[lib]
name = "agentcontract"
path = "src/lib.rs"
[[bin]]
name = "agentcontract"
path = "src/main.rs"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.hex]
version = "0.4"
[dependencies.regex]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "1"
[dependencies.uuid]
version = "1"
features = ["v4"]
[dev-dependencies.tempfile]
version = "3"