[package]
name = "codetether-agent"
version = "0.1.0"
edition = "2024"
rust-version = "1.85"
description = "A2A-native AI coding agent for the CodeTether ecosystem"
license = "MIT"
repository = "https://github.com/codetether/codetether-agent"
[lib]
name = "codetether_agent"
path = "src/lib.rs"
[[bin]]
name = "codetether"
path = "src/main.rs"
[dependencies]
tokio = { version = "1", features = ["full"] }
clap = { version = "4", features = ["derive", "env"] }
axum = { version = "0.8", features = ["ws", "macros"] }
reqwest = { version = "0.13.1", features = ["json", "stream", "rustls"], default-features = false }
tower = "0.5"
tower-http = { version = "0.6", features = ["cors", "trace", "auth"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
async-openai = { version = "0.32.4", features = ["chat-completion"] }
jsonrpc-core = "18"
ratatui = "0.30.0"
crossterm = "0.29.0"
config = "0.15"
directories = "6"
toml = "0.9.8"
vaultrs = "0.7"
anyhow = "1"
thiserror = "2"
tracing = "0.1"
urlencoding = "2"
rand = "0.9.2"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
uuid = { version = "1", features = ["v4", "serde"] }
chrono = { version = "0.4", features = ["serde"] }
futures = "0.3"
async-trait = "0.1"
lazy_static = "1.4"
parking_lot = "0.12"
dashmap = "6"
glob = "0.3"
html-escape = "0.2"
ignore = "0.4"
walkdir = "2"
regex = "1"
similar = "2"
lsp-types = "0.97.0"
[dev-dependencies]
tokio-test = "0.4"
tempfile = "3"
insta = "1"
[profile.release]
lto = true
codegen-units = 1
strip = true