mirror of
https://github.com/harivansh-afk/sandbox-agent.git
synced 2026-04-17 07:03:31 +00:00
feat: expand api snapshots and schema tooling
This commit is contained in:
parent
ee014b0838
commit
011ca27287
72 changed files with 29480 additions and 1081 deletions
67
Cargo.toml
67
Cargo.toml
|
|
@ -9,3 +9,70 @@ authors = ["Sandbox Agent Contributors"]
|
|||
license = "Apache-2.0"
|
||||
repository = "https://github.com/rivet-dev/sandbox-agent"
|
||||
description = "Universal agent API for AI coding assistants"
|
||||
|
||||
[workspace.dependencies]
|
||||
# Internal crates
|
||||
sandbox-agent-core = { path = "server/packages/sandbox-agent" }
|
||||
sandbox-agent-error = { path = "server/packages/error" }
|
||||
sandbox-agent-agent-management = { path = "server/packages/agent-management" }
|
||||
sandbox-agent-agent-credentials = { path = "server/packages/agent-credentials" }
|
||||
sandbox-agent-universal-agent-schema = { path = "server/packages/universal-agent-schema" }
|
||||
sandbox-agent-extracted-agent-schemas = { path = "server/packages/extracted-agent-schemas" }
|
||||
|
||||
# Serialization
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
serde_json = "1.0"
|
||||
|
||||
# Error handling
|
||||
thiserror = "1.0"
|
||||
|
||||
# Schema generation
|
||||
schemars = "0.8"
|
||||
utoipa = { version = "4.2", features = ["axum_extras"] }
|
||||
|
||||
# Web framework
|
||||
axum = "0.7"
|
||||
tower = { version = "0.5", features = ["util"] }
|
||||
tower-http = { version = "0.5", features = ["cors", "trace"] }
|
||||
|
||||
# Async runtime
|
||||
tokio = { version = "1.36", features = ["macros", "rt-multi-thread", "signal", "time"] }
|
||||
tokio-stream = { version = "0.1", features = ["sync"] }
|
||||
futures = "0.3"
|
||||
|
||||
# HTTP client
|
||||
reqwest = { version = "0.11", features = ["blocking", "json", "rustls-tls", "stream"] }
|
||||
|
||||
# CLI
|
||||
clap = { version = "4.5", features = ["derive"] }
|
||||
|
||||
# Logging
|
||||
tracing = "0.1"
|
||||
tracing-logfmt = "0.3"
|
||||
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
||||
|
||||
# Time/date
|
||||
time = { version = "0.3", features = ["parsing", "formatting"] }
|
||||
chrono = { version = "0.4", features = ["serde"] }
|
||||
|
||||
# Filesystem/paths
|
||||
dirs = "5.0"
|
||||
tempfile = "3.10"
|
||||
|
||||
# Archive handling
|
||||
flate2 = "1.0"
|
||||
tar = "0.4"
|
||||
zip = { version = "0.6", default-features = false, features = ["deflate"] }
|
||||
|
||||
# Misc
|
||||
url = "2.5"
|
||||
regress = "0.10"
|
||||
|
||||
# Code generation (build deps)
|
||||
typify = "0.4"
|
||||
prettyplease = "0.2"
|
||||
syn = "2.0"
|
||||
|
||||
# Testing
|
||||
http-body-util = "0.1"
|
||||
insta = { version = "1.41", features = ["yaml"] }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue