use sandbox_rs::SeccompProfile;
fn main() {
println!("=== Sandbox RS - Seccomp Profiles ===\n");
println!("Available seccomp profiles:\n");
for profile in SeccompProfile::all() {
println!("Profile: {:?}", profile);
println!(" Description: {}", profile.description());
println!(" Note: Syscall filtering requires root and proper seccomp setup\n");
}
println!("\nProfile Usage Example:");
println!(" let sandbox = SandboxBuilder::new(\"my-box\")");
println!(" .seccomp_profile(SeccompProfile::IoHeavy)");
println!(" .build()?;");
}