[package]
name = "koda-cli"
version = "0.1.6"
edition = "2024"
description = "A high-performance AI coding agent built in Rust"
license = "MIT"
repository = "https://github.com/lijunzh/koda"
homepage = "https://github.com/lijunzh/koda"
readme = "../README.md"
keywords = ["ai", "coding-agent", "llm", "cli", "rust"]
categories = ["command-line-utilities", "development-tools"]
authors = ["Lijun Zhu"]
[[bin]]
name = "koda"
path = "src/main.rs"
[dependencies]
koda-core = { path = "../koda-core", version = "0.1.6" }
clap = { version = "4", features = ["derive", "env"] }
tokio = { version = "1", features = ["full"] }
tokio-util = { version = "0.7", features = ["rt"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
crossterm = { version = "0.29", features = ["event-stream"] }
syntect = { version = "5", default-features = false, features = ["default-syntaxes", "default-themes", "parsing", "html", "regex-fancy"] }
once_cell = "1"
ratatui = { version = "0.30", default-features = false, features = ["crossterm", "scrolling-regions"] }
ratatui-textarea = "0.8"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tracing-appender = "0.2"
anyhow = "1"
base64 = "0.22"
agent-client-protocol-schema = { version = "0.11", features = ["unstable_session_model", "unstable_session_list", "unstable"] }
tokio-tungstenite = "0.28"
futures-util = "0.3.32"
rpassword = "7.4.0"
[dev-dependencies]
tempfile = "3"
koda-core = { path = "../koda-core", features = ["test-support"] }
serde_json = "1"