[package]
edition = "2021"
rust-version = "1.89"
name = "ao-core"
version = "0.1.0"
authors = ["Ha Duong <duonghb53@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core traits and types for the ao-rs agent orchestrator framework"
homepage = "https://github.com/duonghb53/ao-rs"
readme = false
keywords = [
"agent",
"orchestrator",
"async",
"traits",
"automation",
]
categories = [
"development-tools",
"asynchronous",
]
license = "MIT"
repository = "https://github.com/duonghb53/ao-rs"
[lib]
name = "ao_core"
path = "src/lib.rs"
[[test]]
name = "notification_flow"
path = "tests/notification_flow.rs"
[[test]]
name = "parity_config_validation_parity_test"
path = "tests/parity_config_validation_parity_test.rs"
[[test]]
name = "parity_metadata_parity_test"
path = "tests/parity_metadata_parity_test.rs"
[[test]]
name = "parity_modules_meta"
path = "tests/parity_modules_meta.rs"
[[test]]
name = "parity_observability_feedback_parity_test"
path = "tests/parity_observability_feedback_parity_test.rs"
[[test]]
name = "parity_plugin_registry_parity_test"
path = "tests/parity_plugin_registry_parity_test.rs"
[[test]]
name = "parity_session_strategy_parity_test"
path = "tests/parity_session_strategy_parity_test.rs"
[[test]]
name = "parity_test_utils"
path = "tests/parity_test_utils.rs"
[[test]]
name = "parity_utils_parity_test"
path = "tests/parity_utils_parity_test.rs"
[[test]]
name = "reaction_engine_issue24_retry_escalation"
path = "tests/reaction_engine_issue24_retry_escalation.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.libc]
version = "0.2"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_ignored]
version = "0.1"
[dependencies.serde_json]
version = "1"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.thiserror]
version = "1"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tokio-util]
version = "0.7"
features = ["rt"]
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
version = "1"
features = [
"v4",
"serde",
]