21 lines
505 B
TOML
21 lines
505 B
TOML
[package]
|
|
name = "sandcage"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
description = "Sandboxed containers for AI coding agents"
|
|
license = "MIT"
|
|
keywords = ["docker", "sandbox", "ai", "agent"]
|
|
|
|
[dependencies]
|
|
clap = { version = "4", features = ["derive"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_yaml = "0.9"
|
|
figment = { version = "0.10", features = ["toml", "env"] }
|
|
miette = { version = "7", features = ["fancy"] }
|
|
thiserror = "2"
|
|
which = "7"
|
|
dirs = "6"
|
|
sha2 = "0.10"
|
|
hex = "0.4"
|
|
tempfile = "3"
|