[package]
edition = "2024"
rust-version = "1.95"
name = "a-agent"
version = "0.3.0"
build = false
include = [
"src/**",
"tests/**",
"assets/**",
"config.example.toml",
"README.md",
"LICENSE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fast, terminal-native coding agent with progressive context"
homepage = "https://github.com/YouXam/a-agent"
readme = "README.md"
keywords = [
"ai",
"agent",
"cli",
"terminal",
"developer-tools",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/YouXam/a-agent"
[lib]
name = "a_agent"
path = "src/lib.rs"
[[bin]]
name = "a"
path = "src/main.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[[test]]
name = "cli_e2e"
path = "tests/cli_e2e.rs"
[[test]]
name = "config_context"
path = "tests/config_context.rs"
[[test]]
name = "provider_sdk"
path = "tests/provider_sdk.rs"
[[test]]
name = "providers"
path = "tests/providers.rs"
[[test]]
name = "session_agent"
path = "tests/session_agent.rs"
[[test]]
name = "tools"
path = "tests/tools.rs"
[[test]]
name = "tui_fish"
path = "tests/tui_fish.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.async-openai]
version = "0.41.3"
features = [
"rustls",
"responses",
"chat-completion",
"byot",
]
default-features = false
[dependencies.async-trait]
version = "0.1"
[dependencies.crossterm]
version = "0.29"
features = ["event-stream"]
[dependencies.dialoguer]
version = "0.12"
[dependencies.futures-util]
version = "0.3"
[dependencies.indicatif]
version = "0.18.6"
features = ["unicode-width"]
default-features = false
[dependencies.libc]
version = "0.2"
[dependencies.reqwest]
version = "0.13"
features = [
"gzip",
"json",
"rustls",
"stream",
]
default-features = false
[dependencies.rusqlite]
version = "0.37"
features = ["bundled"]
[dependencies.rustyline]
version = "18.0.1"
features = ["custom-bindings"]
default-features = false
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.strip-ansi-escapes]
version = "0.2"
[dependencies.tempfile]
version = "3.23"
[dependencies.threatflux-anthropic-sdk]
version = "0.3.0"
features = ["rustls-tls"]
default-features = false
[dependencies.tokio]
version = "1.48"
features = [
"fs",
"io-util",
"macros",
"process",
"rt-multi-thread",
"signal",
"sync",
"time",
]
[dependencies.tokio-util]
version = "0.7"
[dependencies.toml]
version = "0.9"
[dependencies.unicode-width]
version = "0.2"
[dependencies.url]
version = "2.5"
[dependencies.uuid]
version = "1.18"
features = ["v4"]
[dev-dependencies.indicatif]
version = "0.18.6"
features = [
"unicode-width",
"in_memory",
]
default-features = false
[dev-dependencies.wiremock]
version = "0.6"
[profile.release]
lto = "thin"
codegen-units = 1
strip = true