[package]
edition = "2021"
name = "a3s"
version = "0.7.3"
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 = "box_command"
path = "tests/box_command.rs"
[[test]]
name = "box_command_soak"
path = "tests/box_command_soak.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"
[dependencies.a3s-code-core]
version = "=4.3.0"
[dependencies.a3s-memory]
version = "0.1.2"
[dependencies.a3s-tui]
version = "=0.1.5"
[dependencies.anyhow]
version = "1"
[dependencies.async-trait]
version = "0.1"
[dependencies.base64]
version = "0.22"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.futures]
version = "0.3"
[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",
]
[dependencies.tokio-util]
version = "0.7"
[profile.release]
opt-level = "z"
lto = true
strip = true