mirror of
https://github.com/harivansh-afk/sandbox-agent.git
synced 2026-04-21 14:05:18 +00:00
chore: add agent-management crate metadata
This commit is contained in:
parent
7b6d7ee917
commit
30d3aca1ee
3 changed files with 21 additions and 0 deletions
18
engine/packages/agent-management/Cargo.toml
Normal file
18
engine/packages/agent-management/Cargo.toml
Normal file
|
|
@ -0,0 +1,18 @@
|
||||||
|
[package]
|
||||||
|
name = "sandbox-daemon-agent-management"
|
||||||
|
version = "0.1.0"
|
||||||
|
edition = "2021"
|
||||||
|
|
||||||
|
[dependencies]
|
||||||
|
thiserror = "1.0"
|
||||||
|
serde = { version = "1.0", features = ["derive"] }
|
||||||
|
serde_json = "1.0"
|
||||||
|
sandbox-daemon-agent-credentials = { path = "../agent-credentials" }
|
||||||
|
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", "formatting"] }
|
||||||
1
engine/packages/agent-management/src/credentials.rs
Normal file
1
engine/packages/agent-management/src/credentials.rs
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
pub use sandbox_daemon_agent_credentials::*;
|
||||||
2
engine/packages/agent-management/src/lib.rs
Normal file
2
engine/packages/agent-management/src/lib.rs
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
pub mod agents;
|
||||||
|
pub mod credentials;
|
||||||
Loading…
Add table
Add a link
Reference in a new issue