[package]
edition = "2021"
name = "safe-shell"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Run any command in a secret-aware OS-level sandbox"
readme = "README.md"
license = "MIT"
repository = "https://github.com/claudexai/safe-shell"
[[bin]]
name = "safe-shell"
path = "src/main.rs"
[[test]]
name = "env_scrub"
path = "tests/env_scrub.rs"
[[test]]
name = "filesystem"
path = "tests/filesystem.rs"
[[test]]
name = "network"
path = "tests/network.rs"
[[test]]
name = "postinstall"
path = "tests/postinstall.rs"
[[test]]
name = "profiles"
path = "tests/profiles.rs"
[[test]]
name = "security"
path = "tests/security.rs"
[[test]]
name = "shield"
path = "tests/shield.rs"
[[test]]
name = "shield_aliases"
path = "tests/shield_aliases.rs"
[[test]]
name = "shield_integration"
path = "tests/shield_integration.rs"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.dirs]
version = "5"
[dependencies.safe-shell-sandbox]
version = "0.1.1"
[dependencies.safe-shell-scanner]
version = "0.1.1"
[dev-dependencies.tempfile]
version = "3"