[package]
edition = "2021"
name = "agent-block-testkit"
version = "0.34.0"
authors = ["Yutaka Nishimura"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "In-process mock LLM servers and a provider wire-shape catalog (spec-conformant and deliberately broken tool-calling shapes) for testing LLM clients"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/ynishi/agent-block"
[lib]
name = "agent_block_testkit"
path = "src/lib.rs"
[dependencies.axum]
version = "0.8"
features = [
"http1",
"tokio",
]
default-features = false
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
"sync",
"time",
"process",
"signal",
]
[dependencies.tokio-util]
version = "0.7"
features = ["rt"]