[package]
edition = "2024"
name = "sbexec"
version = "0.2.0"
authors = ["Tyr Chen <tyr.chen@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Run commands in a macOS sandbox with supply chain attack protection"
homepage = "https://github.com/tyrchen/sbe"
documentation = "https://docs.rs/"
readme = "README.md"
keywords = [
"sandbox",
"security",
"macos",
"supply-chain",
]
categories = [
"development-tools",
"command-line-utilities",
]
license = "MIT"
repository = "https://github.com/tyrchen/sbe"
[[bin]]
name = "sbe"
path = "src/main.rs"
[dependencies.anyhow]
version = "1.0.98"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.dirs]
version = "6.0"
[dependencies.sbe-core]
version = "0.2.0"
[dependencies.sbe-proxy]
version = "0.2.0"
[dependencies.serde_yaml]
version = "0.9.34"
[dependencies.tempfile]
version = "3.15"
[dependencies.tokio]
version = "1.47.1"
features = [
"rt",
"rt-multi-thread",
"macros",
"net",
"io-util",
"signal",
"process",
"fs",
"sync",
"time",
]
[dependencies.tracing]
version = "0.1.41"
[dependencies.tracing-subscriber]
version = "0.3.19"
features = [
"json",
"env-filter",
]