mirror of
https://github.com/harivansh-afk/sandbox-agent.git
synced 2026-04-19 07:03:48 +00:00
46 lines
1.1 KiB
TOML
46 lines
1.1 KiB
TOML
[package]
|
|
name = "sandbox-agent"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
description.workspace = true
|
|
repository.workspace = true
|
|
|
|
[[bin]]
|
|
name = "sandbox-agent"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
sandbox-agent-error.workspace = true
|
|
sandbox-agent-agent-management.workspace = true
|
|
sandbox-agent-agent-credentials.workspace = true
|
|
sandbox-agent-universal-agent-schema.workspace = true
|
|
thiserror.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
axum.workspace = true
|
|
clap.workspace = true
|
|
futures.workspace = true
|
|
reqwest.workspace = true
|
|
dirs.workspace = true
|
|
time.workspace = true
|
|
tokio.workspace = true
|
|
tokio-stream.workspace = true
|
|
tower-http.workspace = true
|
|
utoipa.workspace = true
|
|
schemars.workspace = true
|
|
tracing.workspace = true
|
|
tracing-logfmt.workspace = true
|
|
tracing-subscriber.workspace = true
|
|
include_dir.workspace = true
|
|
tempfile = { workspace = true, optional = true }
|
|
|
|
[dev-dependencies]
|
|
http-body-util.workspace = true
|
|
insta.workspace = true
|
|
tower.workspace = true
|
|
tempfile.workspace = true
|
|
|
|
[features]
|
|
test-utils = ["tempfile"]
|