synwire-sandbox 0.1.0

Platform-specific sandbox backends for synwire agents
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! macOS sandbox backends.
//!
//! Dispatches between:
//! - [`seatbelt`] — `sandbox-exec` with a generated Seatbelt SBPL profile (light)
//! - [`container`] — Apple Container / Docker / Podman / Colima (strong)

pub mod container;
pub mod seatbelt;

pub use container::{ContainerRuntime, detect_container_runtime, spawn_with_runtime};
pub use seatbelt::SeatbeltProfile;