Skip to main content

sbe_core/
lib.rs

1//! sbe-core: Core library for the sbe macOS sandbox executor.
2//!
3//! Provides profile definitions, ecosystem detection, SBPL generation,
4//! and configuration loading for the sbe CLI.
5
6pub mod config;
7pub mod detect;
8pub mod error;
9pub mod profile;
10pub mod sbpl;