sandbox-landlock 0.2.1

Landlock filesystem sandboxing for sandbox-rs (no root required, Linux 5.13+)
Documentation
1
2
3
4
5
6
7
8
//! sandbox-landlock: Unprivileged filesystem sandboxing via Landlock LSM (Linux 5.13+)
//!
//! Landlock provides filesystem access control without root.
//! It is the unprivileged replacement for chroot.

mod ruleset;

pub use ruleset::LandlockConfig;