[package]
name = "agent-tools-interface"
version = "0.7.2"
edition = "2021"
description = "Agent Tools Interface — secure CLI for AI agent tool execution"
license = "Apache-2.0"
repository = "https://github.com/Parcha-ai/ati"
homepage = "https://ati.tools"
readme = "README.md"
keywords = ["agent", "tools", "mcp", "openapi", "cli"]
categories = ["command-line-utilities", "development-tools"]
[lib]
name = "ati"
path = "src/lib.rs"
[[bin]]
name = "ati"
path = "src/main.rs"
[features]
default = []
sentry = ["dep:sentry", "dep:sentry-tracing"]
[dependencies]
clap = { version = "4", features = ["derive", "env"] }
tokio = { version = "1", features = ["full"] }
reqwest = { version = "0.12", features = ["json", "rustls-tls", "blocking"], default-features = false }
axum = { version = "0.8", features = ["json"] }
tower-http = { version = "0.6", features = ["cors", "trace"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
sentry = { version = "0.47", features = ["tracing", "logs"], default-features = false, optional = true }
sentry-tracing = { version = "0.47", optional = true }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
aes-gcm = "0.10"
hmac = "0.12"
sha2 = "0.10"
jsonwebtoken = "9"
uuid = { version = "1", features = ["v4"] }
ring = "0.17"
zeroize = { version = "1", features = ["derive"] }
libc = "0.2"
jsonpath-rust = "0.7"
comfy-table = "7"
base64 = "0.22"
hex = "0.4"
openapiv3 = "2"
serde_yaml = "0.9"
futures = "0.3"
chrono = { version = "0.4", features = ["serde"] }
thiserror = "2"
glob = "0.3"
rand = "0.8"
strsim = "0.11.1"
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
strip = true
[dev-dependencies]
tempfile = "3"
wiremock = "0.6"
assert_cmd = "2"
predicates = "3"
tower = { version = "0.5", features = ["util"] }
http-body-util = "0.1"
reqwest = { version = "0.12", features = ["json", "rustls-tls", "blocking"], default-features = false }