[package]
edition = "2021"
rust-version = "1.70"
name = "simple-agents-healing"
version = "0.2.21"
authors = ["Rishub C R (aka Craftsman)"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Response healing system for SimpleAgents - BAML-inspired JSON parsing and coercion"
readme = "README.md"
keywords = [
"llm",
"ai",
"json",
"parser",
"healing",
]
categories = [
"parser-implementations",
"development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/CraftsMan-Labs/SimpleAgents"
[features]
default = []
regex-support = ["regex"]
[lib]
name = "simple_agents_healing"
path = "src/lib.rs"
[[example]]
name = "basic_healing"
path = "examples/basic_healing.rs"
[[example]]
name = "coercion_demo"
path = "examples/coercion_demo.rs"
[[example]]
name = "streaming_annotations"
path = "examples/streaming_annotations.rs"
[[example]]
name = "streaming_partial_types"
path = "examples/streaming_partial_types.rs"
[[test]]
name = "parser_tests"
path = "tests/parser_tests.rs"
[[test]]
name = "property_tests"
path = "tests/property_tests.rs"
[[test]]
name = "stream_annotations_tests"
path = "tests/stream_annotations_tests.rs"
[[test]]
name = "streaming_tests"
path = "tests/streaming_tests.rs"
[[bench]]
name = "parser_benchmarks"
path = "benches/parser_benchmarks.rs"
harness = false
[dependencies.regex]
version = "1.10"
optional = true
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.simple-agent-type]
version = "0.2.0"
[dependencies.thiserror]
version = "1.0"
[dependencies.tracing]
version = "0.1"
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[dev-dependencies.proptest]
version = "1.5"
[dev-dependencies.simple-agents-macros]
version = "0.2.21"
[dev-dependencies.tokio]
version = "1.41"
features = ["full"]