[package]
edition = "2024"
name = "awaken-runtime-contract"
version = "0.6.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Runtime-facing contract types, traits, and state model for Awaken"
homepage = "https://github.com/AwakenWorks/awaken"
readme = "README.md"
keywords = [
"ai-agent",
"llm",
"agent-framework",
"tool-use",
"multi-agent",
]
categories = ["artificial-intelligence"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/AwakenWorks/awaken"
resolver = "2"
[lib]
name = "awaken_runtime_contract"
path = "src/lib.rs"
[[test]]
name = "agent_spec_catalog"
path = "tests/agent_spec_catalog.rs"
[[test]]
name = "agent_spec_patch"
path = "tests/agent_spec_patch.rs"
[[test]]
name = "builtin_seed"
path = "tests/builtin_seed.rs"
[[test]]
name = "config_record"
path = "tests/config_record.rs"
[[test]]
name = "contract_integration"
path = "tests/contract_integration.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.awaken-tool-pattern]
version = "0.6.0"
[dependencies.base64]
version = "0.22"
[dependencies.futures]
version = "0.3"
[dependencies.jsonschema]
version = "0.45"
[dependencies.parking_lot]
version = "0.12"
[dependencies.regex]
version = "1"
[dependencies.schemars]
version = "1"
[dependencies.secrecy]
version = "0.10"
features = ["serde"]
[dependencies.serde]
version = "1"
features = [
"derive",
"rc",
]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"macros",
"rt",
"sync",
"time",
]
[dependencies.tracing]
version = "0.1"
[dependencies.typedmap]
version = "0.6"
features = ["clone"]
[dependencies.url]
version = "2.5"
[dependencies.uuid]
version = "1"
features = ["v7"]
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt",
"sync",
"time",
]
[lints.clippy]
all = "warn"
[lints.rust]
unsafe_code = "forbid"