[package]
edition = "2021"
name = "agent-tools-interface"
version = "0.7.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Agent Tools Interface — secure CLI for AI agent tool execution"
homepage = "https://ati.tools"
readme = "README.md"
keywords = [
"agent",
"tools",
"mcp",
"openapi",
"cli",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "Apache-2.0"
repository = "https://github.com/Parcha-ai/ati"
[features]
default = []
sentry = [
"dep:sentry",
"dep:sentry-tracing",
]
[lib]
name = "ati"
path = "src/lib.rs"
[[bin]]
name = "ati"
path = "src/main.rs"
[[test]]
name = "audit_test"
path = "tests/audit_test.rs"
[[test]]
name = "auth_gen_errors_test"
path = "tests/auth_gen_errors_test.rs"
[[test]]
name = "auth_generator_test"
path = "tests/auth_generator_test.rs"
[[test]]
name = "call_test"
path = "tests/call_test.rs"
[[test]]
name = "cli_executor_test"
path = "tests/cli_executor_test.rs"
[[test]]
name = "dirs_test"
path = "tests/dirs_test.rs"
[[test]]
name = "google_workspace_manifest_test"
path = "tests/google_workspace_manifest_test.rs"
[[test]]
name = "help_test"
path = "tests/help_test.rs"
[[test]]
name = "http_test"
path = "tests/http_test.rs"
[[test]]
name = "init_test"
path = "tests/init_test.rs"
[[test]]
name = "keyring_test"
path = "tests/keyring_test.rs"
[[test]]
name = "keys_test"
path = "tests/keys_test.rs"
[[test]]
name = "manifest_test"
path = "tests/manifest_test.rs"
[[test]]
name = "mcp_cmd_test"
path = "tests/mcp_cmd_test.rs"
[[test]]
name = "mcp_live_test"
path = "tests/mcp_live_test.rs"
[[test]]
name = "oauth2_test"
path = "tests/oauth2_test.rs"
[[test]]
name = "openapi_test"
path = "tests/openapi_test.rs"
[[test]]
name = "plan_test"
path = "tests/plan_test.rs"
[[test]]
name = "provider_load_test"
path = "tests/provider_load_test.rs"
[[test]]
name = "proxy_mcp_test"
path = "tests/proxy_mcp_test.rs"
[[test]]
name = "proxy_server_test"
path = "tests/proxy_server_test.rs"
[[test]]
name = "proxy_skills_test"
path = "tests/proxy_skills_test.rs"
[[test]]
name = "proxy_test"
path = "tests/proxy_test.rs"
[[test]]
name = "rate_test"
path = "tests/rate_test.rs"
[[test]]
name = "response_test"
path = "tests/response_test.rs"
[[test]]
name = "scope_test"
path = "tests/scope_test.rs"
[[test]]
name = "skill_fetch_test"
path = "tests/skill_fetch_test.rs"
[[test]]
name = "skill_test"
path = "tests/skill_test.rs"
[[test]]
name = "skill_verify_test"
path = "tests/skill_verify_test.rs"
[[test]]
name = "skillati_cli_test"
path = "tests/skillati_cli_test.rs"
[[test]]
name = "ssrf_test"
path = "tests/ssrf_test.rs"
[[test]]
name = "xai_test"
path = "tests/xai_test.rs"
[dependencies.aes-gcm]
version = "0.10"
[dependencies.axum]
version = "0.8"
features = ["json"]
[dependencies.base64]
version = "0.22"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4"
features = [
"derive",
"env",
]
[dependencies.comfy-table]
version = "7"
[dependencies.futures]
version = "0.3"
[dependencies.glob]
version = "0.3"
[dependencies.hex]
version = "0.4"
[dependencies.hmac]
version = "0.12"
[dependencies.jsonpath-rust]
version = "0.7"
[dependencies.jsonwebtoken]
version = "9"
[dependencies.libc]
version = "0.2"
[dependencies.openapiv3]
version = "2"
[dependencies.rand]
version = "0.8"
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"rustls-tls",
"blocking",
]
default-features = false
[dependencies.ring]
version = "0.17"
[dependencies.sentry]
version = "0.47"
features = [
"tracing",
"logs",
]
optional = true
default-features = false
[dependencies.sentry-tracing]
version = "0.47"
optional = true
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.sha2]
version = "0.10"
[dependencies.strsim]
version = "0.11.1"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.toml]
version = "0.8"
[dependencies.tower-http]
version = "0.6"
features = [
"cors",
"trace",
]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"env-filter",
"json",
]
[dependencies.uuid]
version = "1"
features = ["v4"]
[dependencies.zeroize]
version = "1"
features = ["derive"]
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.http-body-util]
version = "0.1"
[dev-dependencies.predicates]
version = "3"
[dev-dependencies.reqwest]
version = "0.12"
features = [
"json",
"rustls-tls",
"blocking",
]
default-features = false
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tower]
version = "0.5"
features = ["util"]
[dev-dependencies.wiremock]
version = "0.6"
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
strip = true