oxicode-agent 0.75.0

Agent runtime with tool-calling loop for AI coding assistants
Documentation
[package]
name = "oxicode-agent"
version = "0.75.0"
edition.workspace = true
rust-version.workspace = true
description = "Agent runtime with tool-calling loop for AI coding assistants"
readme = "README.md"
license = "MIT"
authors = ["a7garden <a7garden@icloud.com>"]
repository = "https://github.com/project-oxi/oxicode"
keywords = ["ai", "agent", "tools", "llm"]
categories = ["development-tools", "asynchronous"]
exclude = ["target/", "benches/"]

[dependencies]
oxicode-ai = { version = "0.75.0", path = "../oxicode-ai" }
oxicode-hashline = { version = "0.75.0", path = "../oxicode-hashline" }
oxicode-api-stability = { version = "0.75.0", path = "../oxicode-api-stability" }
tokio = { version = "1", features = ["full"] }
futures = "0.3"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
uuid = { version = "1", features = ["v4"] }
tracing = "0.1"
parking_lot = "0.12"
anyhow = "1"
thiserror = { workspace = true }
regex = "1"
glob = "0.3"
base64 = "0.22"
dirs = "6"
unicode-normalization = "0.1"
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
oxibrowser = { version = "0.21", default-features = false }
async-trait = "0.1"
oxibrowser-core = { version = "0.21", optional = true }
serde_yaml = "0.9"

[features]
default = []
native-browser = ["oxibrowser-core"]

[dev-dependencies]
async-stream = "0.3"
tempfile = "3"

[target.'cfg(unix)'.dependencies]
libc = "0.2"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]