[package]
edition = "2021"
name = "oxi-agent"
version = "0.19.0"
authors = ["Won <won@mariozechner.com>"]
build = false
exclude = [
"target/",
"benches/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Agent runtime with tool-calling loop for AI coding assistants"
readme = "README.md"
keywords = [
"ai",
"agent",
"tools",
"llm",
]
categories = [
"development-tools",
"asynchronous",
]
license = "MIT"
repository = "https://github.com/a7garden/oxi"
[lib]
name = "oxi_agent"
path = "src/lib.rs"
[[test]]
name = "agent_loop_full"
path = "tests/agent_loop_full.rs"
[[test]]
name = "concurrency"
path = "tests/concurrency.rs"
[[test]]
name = "edge_cases"
path = "tests/edge_cases.rs"
[[test]]
name = "retry_tests"
path = "tests/retry_tests.rs"
[[test]]
name = "streaming"
path = "tests/streaming.rs"
[[test]]
name = "tools"
path = "tests/tools.rs"
[dependencies.a3s-search]
version = "1.2.3"
default-features = false
[dependencies.anyhow]
version = "1"
[dependencies.async-trait]
version = "0.1"
[dependencies.base64]
version = "0.22"
[dependencies.dirs]
version = "5"
[dependencies.futures]
version = "0.3"
[dependencies.glob]
version = "0.3"
[dependencies.oxi-ai]
version = "0.19.0"
[dependencies.parking_lot]
version = "0.12"
[dependencies.regex]
version = "1"
[dependencies.reqwest]
version = "0.12"
features = ["json"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tracing]
version = "0.1"
[dependencies.unicode-normalization]
version = "0.1"
[dependencies.uuid]
version = "1"
features = ["v4"]
[dev-dependencies.async-stream]
version = "0.3"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio-test]
version = "0.4"
[target."cfg(unix)".dependencies.libc]
version = "0.2"