[package]
edition = "2021"
name = "sandbox-agent"
version = "0.1.5"
authors = ["Rivet Gaming, LLC <developer@rivet.gg>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Universal API for automatic coding agents in sandboxes. Supprots Claude Code, Codex, OpenCode, and Amp."
readme = false
license = "Apache-2.0"
repository = "https://github.com/rivet-dev/sandbox-agent"
[features]
test-utils = ["tempfile"]
[lib]
name = "sandbox_agent"
path = "src/lib.rs"
[[bin]]
name = "sandbox-agent"
path = "src/main.rs"
[[test]]
name = "agent_flows"
path = "tests/agent_flows.rs"
[[test]]
name = "agent_management"
path = "tests/agent_management.rs"
[[test]]
name = "http_endpoints"
path = "tests/http_endpoints.rs"
[[test]]
name = "server_manager"
path = "tests/server_manager.rs"
[[test]]
name = "sessions"
path = "tests/sessions.rs"
[[test]]
name = "ui"
path = "tests/ui.rs"
[dependencies.axum]
version = "0.7"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.dirs]
version = "5.0"
[dependencies.futures]
version = "0.3"
[dependencies.include_dir]
version = "0.7"
[dependencies.reqwest]
version = "0.11"
features = [
"blocking",
"json",
"rustls-tls",
"stream",
]
[dependencies.sandbox-agent-agent-credentials]
version = "0.1.5"
[dependencies.sandbox-agent-agent-management]
version = "0.1.5"
[dependencies.sandbox-agent-error]
version = "0.1.5"
[dependencies.sandbox-agent-universal-agent-schema]
version = "0.1.5"
[dependencies.schemars]
version = "0.8"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.tempfile]
version = "3.10"
optional = true
[dependencies.thiserror]
version = "1.0"
[dependencies.time]
version = "0.3"
features = [
"parsing",
"formatting",
]
[dependencies.tokio]
version = "1.36"
features = [
"macros",
"rt-multi-thread",
"signal",
"time",
]
[dependencies.tokio-stream]
version = "0.1"
features = ["sync"]
[dependencies.tower-http]
version = "0.5"
features = [
"cors",
"trace",
]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-logfmt]
version = "0.3"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dependencies.utoipa]
version = "4.2"
features = ["axum_extras"]
[dev-dependencies.http-body-util]
version = "0.1"
[dev-dependencies.insta]
version = "1.41"
features = ["yaml"]
[dev-dependencies.tempfile]
version = "3.10"
[dev-dependencies.tower]
version = "0.5"
features = ["util"]
[target."cfg(unix)".dependencies.libc]
version = "0.2"