[package]
edition = "2024"
rust-version = "1.96"
name = "oxicode-agent"
version = "0.65.0"
authors = ["a7garden <a7garden@icloud.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/project-oxi/oxicode"
resolver = "2"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
default = []
native-browser = ["oxibrowser-core"]
[lib]
name = "oxicode_agent"
path = "src/lib.rs"
[[example]]
name = "custom_tool"
path = "examples/custom_tool.rs"
[[test]]
name = "agent_loop_full"
path = "tests/agent_loop_full.rs"
[[test]]
name = "approval_tests"
path = "tests/approval_tests.rs"
[[test]]
name = "compaction_tests"
path = "tests/compaction_tests.rs"
[[test]]
name = "concurrency"
path = "tests/concurrency.rs"
[[test]]
name = "edge_cases"
path = "tests/edge_cases.rs"
[[test]]
name = "hooks_tests"
path = "tests/hooks_tests.rs"
[[test]]
name = "mcp_http_interop"
path = "tests/mcp_http_interop.rs"
[[test]]
name = "mcp_stdio_interop"
path = "tests/mcp_stdio_interop.rs"
[[test]]
name = "queue_tests"
path = "tests/queue_tests.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.anyhow]
version = "1"
[dependencies.async-trait]
version = "0.1"
[dependencies.base64]
version = "0.22"
[dependencies.dirs]
version = "6"
[dependencies.futures]
version = "0.3"
[dependencies.glob]
version = "0.3"
[dependencies.oxibrowser]
version = "0.16"
default-features = false
[dependencies.oxibrowser-core]
version = "0.16"
optional = true
[dependencies.oxicode-ai]
version = "0.65.0"
[dependencies.oxicode-api-stability]
version = "0.65.0"
[dependencies.oxicode-hashline]
version = "0.65.0"
[dependencies.parking_lot]
version = "0.12"
[dependencies.regex]
version = "1"
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"rustls-tls",
]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_yaml]
version = "0.9"
[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"
[target."cfg(unix)".dependencies.libc]
version = "0.2"