[package]
edition = "2021"
rust-version = "1.75"
name = "simple-agents-workflow"
version = "0.2.30"
authors = ["SimpleAgents Contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Workflow IR and validation for SimpleAgents"
homepage = "https://github.com/CraftsMan-Labs/SimpleAgents"
documentation = "https://docs.rs/simple-agent-type"
readme = false
license = "MIT OR Apache-2.0"
repository = "https://github.com/CraftsMan-Labs/SimpleAgents"
[lib]
name = "simple_agents_workflow"
path = "src/lib.rs"
[[example]]
name = "debug_inspection"
path = "examples/debug_inspection.rs"
[[example]]
name = "linear_runtime"
path = "examples/linear_runtime.rs"
[[test]]
name = "expression_fixtures"
path = "tests/expression_fixtures.rs"
[[test]]
name = "trace_fixtures"
path = "tests/trace_fixtures.rs"
[[test]]
name = "workflow_dsl_ir_fixtures"
path = "tests/workflow_dsl_ir_fixtures.rs"
[[bench]]
name = "runtime_benchmarks"
path = "benches/runtime_benchmarks.rs"
harness = false
[dependencies.async-trait]
version = "0.1"
[dependencies.futures]
version = "0.3"
[dependencies.jsonschema]
version = "0.18"
[dependencies.opentelemetry]
version = "0.24"
features = ["trace"]
[dependencies.opentelemetry-otlp]
version = "0.17"
features = [
"grpc-tonic",
"http-proto",
"reqwest-client",
]
[dependencies.opentelemetry_sdk]
version = "0.24"
features = [
"rt-tokio",
"trace",
]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.simple-agent-type]
version = "0.2.0"
[dependencies.simple-agents-core]
version = "0.2.30"
[dependencies.simple-agents-healing]
version = "0.2.0"
[dependencies.thiserror]
version = "1.0"
[dependencies.tokio]
version = "1.35"
features = ["full"]
[dependencies.tonic]
version = "0.12"
features = ["transport"]
[dev-dependencies.criterion]
version = "0.5"
features = [
"async_tokio",
"html_reports",
]
[dev-dependencies.proptest]
version = "1.6"