[package]
name = "eval-core"
version = "0.2.0"
edition = "2024"
rust-version = "1.88"
authors = ["Craig Salajan <craigsalajan@gmail.com>"]
license = "MIT OR Apache-2.0"
description = "A testing framework for LLM agents: prompt-based test cases with built-in assertions on tool calls, parameters, and text/math output — bring your own harness."
readme = "README.md"
repository = "https://github.com/CraigSalajan/eval-core"
homepage = "https://github.com/CraigSalajan/eval-core"
documentation = "https://docs.rs/eval-core"
keywords = ["llm", "eval", "benchmark", "testing", "agent"]
categories = ["development-tools::testing", "command-line-utilities"]
exclude = [".github/", "PUBLISHING.md", "ROADMAP.md"]
[dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = "1"
ron = "0.8"
anyhow = "1"
thiserror = "2"
regex = "1"
tracing = "0.1"
include_dir = "0.7"
chrono = { version = "0.4", default-features = false, features = ["clock"] }
[dev-dependencies]
tempfile = "3"
[lints.rust]
unsafe_code = "warn"
missing_debug_implementations = "warn"
[lints.clippy]
all = { level = "warn", priority = -1 }
[workspace]