[package]
edition = "2021"
rust-version = "1.75"
name = "ainl-runtime"
version = "0.3.7-alpha"
authors = ["Steven Hooley"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "AINL unified-graph orchestration: load/validate memory artifacts, compile turn context, minimal graph walk, extraction scheduling, host TurnHooks, and optional Tokio run_turn_async (feature async; spawn_blocking + Arc<std::sync::Mutex<GraphMemory>>)."
readme = "README.md"
keywords = [
"ai",
"agent",
"ainl",
"programming-language",
"graph-memory",
]
categories = ["development-tools"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/sbhooley/armaraos"
[package.metadata.docs.rs]
all-features = true
[features]
async = [
"dep:async-trait",
"dep:tokio",
]
default = []
[lib]
name = "ainl_runtime"
path = "src/lib.rs"
[[test]]
name = "test_delegation_depth"
path = "tests/test_delegation_depth.rs"
[[test]]
name = "test_engine"
path = "tests/test_engine.rs"
[[test]]
name = "test_graph_patch_adapter"
path = "tests/test_graph_patch_adapter.rs"
[[test]]
name = "test_semantic_ranking"
path = "tests/test_semantic_ranking.rs"
[[test]]
name = "test_session_persistence"
path = "tests/test_session_persistence.rs"
[[test]]
name = "test_turn_outcome"
path = "tests/test_turn_outcome.rs"
[[test]]
name = "test_turn_phase_granularity"
path = "tests/test_turn_phase_granularity.rs"
[[test]]
name = "test_async_runtime"
path = "tests/test_async_runtime.rs"
required-features = ["async"]
[dependencies.ainl-agent-snapshot]
version = "0.1.0"
[dependencies.ainl-graph-extractor]
version = "0.1.6"
[dependencies.ainl-memory]
version = "0.1.9-alpha"
[dependencies.ainl-persona]
version = "0.1.6"
[dependencies.ainl-semantic-tagger]
version = "0.1.6"
[dependencies.async-trait]
version = "0.1"
optional = true
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.scopeguard]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1"
features = [
"full",
"rt",
"macros",
"fs",
"sync",
]
optional = true
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
version = "1"
features = [
"v4",
"v5",
"serde",
]
[dev-dependencies.async-trait]
version = "0.1"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1"
features = [
"full",
"macros",
"rt-multi-thread",
]