[package]
edition = "2021"
name = "a3s"
version = "0.8.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "a3s — A3S coding agent CLI; `a3s code` launches the interactive TUI"
homepage = "https://github.com/A3S-Lab/a3s"
readme = "README.md"
keywords = [
"a3s",
"cli",
"agent",
"tui",
"coding",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/A3S-Lab/Cli"
[[bin]]
name = "a3s"
path = "src/main.rs"
[[test]]
name = "account_commands"
path = "tests/account_commands.rs"
[[test]]
name = "box_command"
path = "tests/box_command.rs"
[[test]]
name = "box_command_soak"
path = "tests/box_command_soak.rs"
[[test]]
name = "component_commands"
path = "tests/component_commands.rs"
[[test]]
name = "ctx_compact_real_llm"
path = "tests/ctx_compact_real_llm.rs"
[[test]]
name = "fork_real_llm"
path = "tests/fork_real_llm.rs"
[[test]]
name = "model_commands"
path = "tests/model_commands.rs"
[[test]]
name = "os_auth_commands"
path = "tests/os_auth_commands.rs"
[[test]]
name = "real_os_lifecycle"
path = "tests/real_os_lifecycle.rs"
[[test]]
name = "search_commands"
path = "tests/search_commands.rs"
[dependencies.a3s-boot]
version = "0.1.1"
[dependencies.a3s-code-core]
version = "=5.2.4"
[dependencies.a3s-memory]
version = "0.1.2"
[dependencies.a3s-search]
version = "1.4.0"
features = ["lightpanda"]
[dependencies.a3s-tui]
version = "=0.1.9"
[dependencies.anyhow]
version = "1"
[dependencies.async-trait]
version = "0.1"
[dependencies.axum]
version = "0.8"
[dependencies.base64]
version = "0.22"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.comrak]
version = "0.36"
default-features = false
[dependencies.futures]
version = "0.3"
[dependencies.http-body-util]
version = "0.1"
[dependencies.image]
version = "0.25"
features = [
"png",
"jpeg",
"gif",
"webp",
]
default-features = false
[dependencies.rand]
version = "0.8"
[dependencies.reqwest]
version = "0.11"
features = [
"json",
"rustls-tls",
]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.similar]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"sync",
"time",
"process",
"io-util",
"net",
"fs",
"signal",
]
[dependencies.tokio-util]
version = "0.7"
[dev-dependencies.tempfile]
version = "3"
[profile.release]
opt-level = "z"
lto = true
strip = true