[package]
edition = "2024"
name = "rab-agent"
version = "0.1.0"
authors = ["Marko Kocic <marko@euptera.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "rab is a lightweight, extensible, Rust-based coding agent."
readme = "README.md"
keywords = [
"agent",
"coding",
"ai",
"broker",
"llm",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "EPL-2.0"
repository = "https://github.com/markokocic/rab"
[features]
default = ["syntect"]
syntect = ["dep:syntect"]
[lib]
name = "rab"
path = "src/lib.rs"
[[bin]]
name = "rab"
path = "src/main.rs"
[[test]]
name = "auth_tests"
path = "tests/auth_tests.rs"
[[test]]
name = "commands_tests"
path = "tests/commands_tests.rs"
[[test]]
name = "model_selector_tests"
path = "tests/model_selector_tests.rs"
[[test]]
name = "session_tests"
path = "tests/session_tests.rs"
[[test]]
name = "settings_tests"
path = "tests/settings_tests.rs"
[[test]]
name = "tools_bash_tests"
path = "tests/tools_bash_tests.rs"
[[test]]
name = "tools_edit_tests"
path = "tests/tools_edit_tests.rs"
[[test]]
name = "tools_read_tests"
path = "tests/tools_read_tests.rs"
[[test]]
name = "tools_write_tests"
path = "tests/tools_write_tests.rs"
[[test]]
name = "tui_editor_tests"
path = "tests/tui_editor_tests.rs"
[[test]]
name = "types_tests"
path = "tests/types_tests.rs"
[dependencies.anyhow]
version = "1"
[dependencies.async-stream]
version = "0.3"
[dependencies.async-trait]
version = "0.1"
[dependencies.base64]
version = "0.22.1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.colored]
version = "3"
[dependencies.crossterm]
version = "0.29"
[dependencies.diff]
version = "0.1"
[dependencies.directories]
version = "6"
[dependencies.futures]
version = "0.3"
[dependencies.genai]
version = "0.6"
[dependencies.libc]
version = "0.2"
[dependencies.pulldown-cmark]
version = "0.13.4"
[dependencies.regex]
version = "1.12.4"
[dependencies.reqwest]
version = "0.13"
features = [
"rustls",
"json",
"stream",
"gzip",
"charset",
"http2",
"socks",
"system-proxy",
]
default-features = false
[dependencies.rustls]
version = "0.23"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.syntect]
version = "5.3.0"
optional = true
[dependencies.tokio]
version = "1"
features = [
"full",
"sync",
]
[dependencies.unicode-segmentation]
version = "1"
[dependencies.unicode-width]
version = "0.2"
[dependencies.uuid]
version = "1"
features = ["v4"]
[dependencies.webpki-roots]
version = "1"
[dev-dependencies.tempfile]
version = "3"