[package]
edition = "2024"
name = "sbe-core"
version = "0.3.0"
authors = ["Tyr Chen <tyr.chen@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core library for sbe — cross-platform sandbox executor for supply chain defense"
homepage = "https://github.com/tyrchen/sbe"
documentation = "https://docs.rs/"
readme = "README.md"
keywords = [
"sandbox",
"security",
"macos",
"linux",
"supply-chain",
]
categories = ["development-tools"]
license = "MIT"
repository = "https://github.com/tyrchen/sbe"
[lib]
name = "sbe_core"
path = "src/lib.rs"
[dependencies.dirs]
version = "6.0"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_yaml]
version = "0.9.34"
[dependencies.thiserror]
version = "2.0.18"
[dependencies.tokio]
version = "1.52.3"
features = [
"rt",
"rt-multi-thread",
"macros",
"net",
"io-util",
"signal",
"process",
"fs",
"sync",
"time",
]
[dependencies.tracing]
version = "0.1.44"
[target.'cfg(target_os = "linux")'.dependencies.landlock]
version = "~0.4"
[target.'cfg(target_os = "linux")'.dependencies.libc]
version = "0.2"
[target.'cfg(target_os = "linux")'.dependencies.seccompiler]
version = "~0.5"
[target.'cfg(target_os = "macos")'.dependencies.tempfile]
version = "3.27"