[package]
edition = "2024"
name = "awaken-runtime"
version = "0.4.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Phase-based execution engine, plugin system, and agent loop for Awaken"
homepage = "https://github.com/AwakenWorks/awaken"
readme = "README.md"
keywords = [
"ai-agent",
"llm",
"agent-framework",
"tool-use",
"multi-agent",
]
categories = [
"artificial-intelligence",
"asynchronous",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/AwakenWorks/awaken"
resolver = "2"
[features]
a2a = []
background = []
default = [
"a2a",
"handoff",
"background",
]
handoff = []
parallel-tools = []
test-utils = []
[lib]
name = "awaken_runtime"
path = "src/lib.rs"
[[test]]
name = "background_task_lifecycle"
path = "tests/background_task_lifecycle.rs"
[[test]]
name = "event_lifecycle"
path = "tests/event_lifecycle.rs"
[[test]]
name = "profile_store_integration"
path = "tests/profile_store_integration.rs"
[[test]]
name = "public_api_compat"
path = "tests/public_api_compat.rs"
[[test]]
name = "public_api_compat_extended"
path = "tests/public_api_compat_extended.rs"
[[test]]
name = "shared_state_integration"
path = "tests/shared_state_integration.rs"
[[test]]
name = "tool_side_effects"
path = "tests/tool_side_effects.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.awaken-contract]
version = "0.4.0"
[dependencies.awaken-protocol-a2a]
version = "0.4.0"
[dependencies.futures]
version = "0.3"
[dependencies.genai]
version = "0.6.0-beta.17"
[dependencies.jsonschema]
version = "0.45"
[dependencies.metrics]
version = "0.24"
[dependencies.parking_lot]
version = "0.12"
[dependencies.reqwest]
version = "0.13"
features = ["json"]
[dependencies.schemars]
version = "1"
[dependencies.serde]
version = "1"
features = [
"derive",
"rc",
]
[dependencies.serde_json]
version = "1"
[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.uuid]
version = "1"
features = ["v7"]
[dev-dependencies.awaken-stores]
version = "0.4.0"
[dev-dependencies.metrics-util]
version = "0.20"
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt",
"sync",
"time",
]
[lints.clippy]
all = "warn"
[lints.rust]
unsafe_code = "forbid"