[package]
edition = "2024"
name = "layer0"
version = "0.4.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Protocol traits for composable agentic AI systems"
homepage = "https://github.com/secbear/skelegent"
readme = "README.md"
keywords = [
"skelegent",
"ai",
"agent",
"async",
"protocol",
]
categories = [
"asynchronous",
"rust-patterns",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/secbear/skelegent"
[features]
default = []
test-utils = ["tokio"]
[lib]
name = "layer0"
path = "src/lib.rs"
[[test]]
name = "phase1"
path = "tests/phase1.rs"
[[test]]
name = "phase2"
path = "tests/phase2.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.rust_decimal]
version = "1"
features = ["serde-str"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = ["rt"]
optional = true
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
]