sbe-core 0.4.0

Core library for sbe — cross-platform sandbox executor for supply chain defense
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! sbe-core: Core library for the sbe sandbox executor.
//!
//! Provides profile definitions, ecosystem detection, configuration loading,
//! and the [`sandbox`] backend abstraction used to enforce policies on the
//! host. Backends are selected at compile time per target OS; outside this
//! crate, callers reference the alias `sandbox::Sandbox` rather than the
//! concrete backend type.

pub mod config;
pub mod detect;
pub mod error;
pub mod profile;
pub mod sandbox;

#[cfg(target_os = "linux")]
pub use sandbox::maybe_run_launcher;
pub use sandbox::{BackendFeatures, BackendInfo, BackendOptions, Sandbox, SandboxBackend};