[package]
edition = "2024"
rust-version = "1.85"
name = "aion-integrations"
version = "0.10.0"
authors = ["Tom Whiting <tom@ablative.com.au>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Harness-integration SDK for Aion: the AgentHarness trait plus reusable building blocks for making an agent harness a first-class Aion integration."
documentation = "https://docs.rs/aion-integrations"
readme = "README.md"
keywords = [
"aion",
"agent",
"harness",
"integration",
"sdk",
]
categories = [
"api-bindings",
"asynchronous",
]
license = "AGPL-3.0-only"
repository = "https://github.com/ablative-io/aion"
resolver = "2"
[lib]
name = "aion_integrations"
path = "src/lib.rs"
[[test]]
name = "mock_harness"
path = "tests/mock_harness.rs"
[dependencies.aion-core]
version = "0.10.0"
[dependencies.async-trait]
version = "0.1"
[dependencies.futures]
version = "0.3"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1.52"
features = [
"io-std",
"io-util",
"macros",
"rt",
"sync",
]
[dev-dependencies.chrono]
version = "0.4"
[dev-dependencies.tokio]
version = "1.52"
features = [
"io-util",
"macros",
"rt",
"rt-multi-thread",
"sync",
"time",
]
[dev-dependencies.uuid]
version = "1.23"
[lints.clippy]
expect_used = "deny"
panic = "deny"
todo = "warn"
unwrap_used = "deny"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "deny"
priority = -1
[lints.rust]
missing_docs = "warn"
unsafe_code = "deny"