[package]
name = "agcli"
version = "0.10.2"
edition = "2024"
description = "A tiny, no-bloat foundation crate for building agentic CLIs in Rust."
license = "MIT"
repository = "https://github.com/matthiasdebernardini/agcli"
homepage = "https://github.com/matthiasdebernardini/agcli"
readme = "README.md"
keywords = ["cli", "agent", "json", "framework"]
categories = ["command-line-interface"]
[features]
deserialize = []
[dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1", features = ["fs", "io-util", "io-std"] }
[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
[[bench]]
name = "core"
harness = false
[profile.release]
opt-level = 3
lto = "thin"
codegen-units = 1
[profile.bench]
inherits = "release"
debug = true