[package]
edition = "2024"
rust-version = "1.85"
name = "cruxx-script"
version = "0.2.6"
authors = ["Joseph O'Brien"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "YAML-driven pipeline scripting for the cruxx agentic DSL"
homepage = "https://github.com/89jobrien/cruxx"
readme = "README.md"
keywords = [
"agent",
"agentic",
"dsl",
"replay",
"trace",
]
categories = [
"development-tools",
"asynchronous",
]
license = "MIT"
repository = "https://github.com/89jobrien/cruxx"
resolver = "2"
[lib]
name = "cruxx_script"
path = "src/lib.rs"
[[test]]
name = "confidence_coverage"
path = "tests/confidence_coverage.rs"
[[test]]
name = "handler_confidence"
path = "tests/handler_confidence.rs"
[[test]]
name = "pipeline"
path = "tests/pipeline.rs"
[[test]]
name = "static_args"
path = "tests/static_args.rs"
[[test]]
name = "validation"
path = "tests/validation.rs"
[dependencies.anyhow]
version = "1"
[dependencies.cruxx-core]
version = "0.2.6"
[dependencies.futures]
version = "0.3"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde-saphyr]
version = "0.0.23"
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = ["full"]
[dev-dependencies.tokio]
version = "1"
features = ["full"]