mirror of
https://github.com/harivansh-afk/sandbox-agent.git
synced 2026-04-17 07:03:31 +00:00
feat: add sandbox-daemon agent management
This commit is contained in:
parent
30a66a7e1c
commit
55c45bfc12
11 changed files with 2242 additions and 0 deletions
27
engine/packages/sandbox-daemon/Cargo.toml
Normal file
27
engine/packages/sandbox-daemon/Cargo.toml
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
[package]
|
||||
name = "sandbox-daemon"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
thiserror = "1.0"
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
serde_json = "1.0"
|
||||
axum = "0.7"
|
||||
clap = { version = "4.5", features = ["derive"] }
|
||||
futures = "0.3"
|
||||
error = { path = "../error" }
|
||||
reqwest = { version = "0.11", features = ["blocking", "json", "rustls-tls"] }
|
||||
flate2 = "1.0"
|
||||
tar = "0.4"
|
||||
zip = { version = "0.6", default-features = false, features = ["deflate"] }
|
||||
url = "2.5"
|
||||
dirs = "5.0"
|
||||
tempfile = "3.10"
|
||||
time = { version = "0.3", features = ["parsing"] }
|
||||
tokio = { version = "1.36", features = ["macros", "rt-multi-thread", "signal"] }
|
||||
tower-http = { version = "0.5", features = ["cors"] }
|
||||
utoipa = { version = "4.2", features = ["axum_extras"] }
|
||||
schemars = "0.8"
|
||||
|
||||
[dev-dependencies]
|
||||
Loading…
Add table
Add a link
Reference in a new issue