[package]
edition = "2024"
name = "sboxd"
version = "0.1.7"
authors = ["Aquilesorei"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Policy-driven command runner for sandboxed dependency installation"
homepage = "https://github.com/Aquilesorei/sboxd"
readme = "README.md"
keywords = [
"sandbox",
"podman",
"security",
"supply-chain",
"package-manager",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/Aquilesorei/sboxd"
[lib]
name = "sbox"
path = "src/lib.rs"
[[bin]]
name = "sbox"
path = "src/main.rs"
[[test]]
name = "cli_tests"
path = "tests/cli_tests.rs"
[[test]]
name = "dispatch_tests"
path = "tests/dispatch_tests.rs"
[[test]]
name = "docker_integration_tests"
path = "tests/docker_integration_tests.rs"
[[test]]
name = "init_tests"
path = "tests/init_tests.rs"
[[test]]
name = "load_tests"
path = "tests/load_tests.rs"
[[test]]
name = "plan_golden_tests"
path = "tests/plan_golden_tests.rs"
[[test]]
name = "podman_integration_tests"
path = "tests/podman_integration_tests.rs"
[[test]]
name = "resolve_tests"
path = "tests/resolve_tests.rs"
[[test]]
name = "validate_tests"
path = "tests/validate_tests.rs"
[dependencies.clap]
version = "4.5.39"
features = ["derive"]
[dependencies.dialoguer]
version = "0.11"
[dependencies.indexmap]
version = "2.12.0"
features = ["serde"]
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.145"
[dependencies.serde_yaml]
version = "0.9.34"
[dependencies.thiserror]
version = "2.0.12"
[dependencies.tracing]
version = "0.1.41"
[dependencies.tracing-subscriber]
version = "0.3.20"
features = ["fmt"]
[dev-dependencies.tempfile]
version = "3.15"