24 lines
375 B
TOML
24 lines
375 B
TOML
[package]
|
|
name = "agent-sandbox"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[lib]
|
|
name = "agent_sandbox"
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "agent-sandbox"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
clap = { version = "4", features = ["derive"] }
|
|
glob = "0.3"
|
|
serde = { version = "1", features = ["derive"] }
|
|
shlex = "1.3.0"
|
|
toml = "1"
|
|
|
|
[dev-dependencies]
|
|
shlex = "1.3.0"
|
|
tempfile = "3"
|