[package]
edition = "2021"
rust-version = "1.95"
name = "agentcarousel"
version = "0.2.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Evaluate agents and skills with YAML fixtures, run cases (mock or live), and keep run rows in SQLite for reports and evidence export."
homepage = "https://agentcarousel.com"
documentation = "https://docs.rs/agentcarousel"
readme = "README.md"
keywords = [
"fixtures",
"agents",
"skills",
"testing",
"cli",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "Apache-2.0"
repository = "https://github.com/agentcarousel/agentcarousel"
[lib]
name = "agentcarousel"
path = "src/lib.rs"
[[bin]]
name = "agc"
path = "src/bin/agc.rs"
[[bin]]
name = "agentcarousel"
path = "src/main.rs"
[[test]]
name = "bundle_negative"
path = "tests/bundle_negative.rs"
[[test]]
name = "bundle_registry_flow"
path = "tests/bundle_registry_flow.rs"
[[test]]
name = "eval_live_mode"
path = "tests/eval_live_mode.rs"
[[test]]
name = "eval_run_hint_negative"
path = "tests/eval_run_hint_negative.rs"
[[test]]
name = "export_evidence_pack"
path = "tests/export_evidence_pack.rs"
[[test]]
name = "init_negative"
path = "tests/init_negative.rs"
[[test]]
name = "report_diff_threshold"
path = "tests/report_diff_threshold.rs"
[[test]]
name = "test_exit_codes"
path = "tests/test_exit_codes.rs"
[[test]]
name = "trust_check_flow"
path = "tests/trust_check_flow.rs"
[[test]]
name = "validate_negative"
path = "tests/validate_negative.rs"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.console]
version = "0.15"
[dependencies.flate2]
version = "1"
[dependencies.globset]
version = "0.4"
[dependencies.indicatif]
version = "0.17"
[dependencies.jsonschema]
version = "0.17"
[dependencies.openrouter-rs]
version = "0.8.0"
[dependencies.quick-xml]
version = "0.31"
features = ["serialize"]
[dependencies.regex]
version = "1"
[dependencies.reqwest]
version = "0.12"
features = [
"blocking",
"json",
"multipart",
"rustls-tls",
]
default-features = false
[dependencies.rusqlite]
version = "0.31"
features = ["bundled"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.sha2]
version = "0.10"
[dependencies.similar]
version = "2"
[dependencies.tar]
version = "0.4"
[dependencies.thiserror]
version = "1"
[dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
"sync",
"time",
]
[dependencies.toml]
version = "0.8"
[dependencies.ulid]
version = "1"
[dependencies.walkdir]
version = "2"
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.chrono]
version = "0.4"
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.tempfile]
version = "3"