landstrip 0.16.8

Sandbox for coding agents with parametrized state
1
2
3
4
5
6
7
8
9
10
11
12
13
// SPDX-License-Identifier: LGPL-2.1-or-later
// Copyright (c) 2026 Jarkko Sakkinen

//! Platform-independent sandbox engine: policy lowering, path resolution, and
//! the trap reporting channel shared by the OS backends.

pub(crate) mod error;
pub(crate) mod paths;
pub(crate) mod policy;
#[cfg(target_os = "linux")]
pub(crate) mod trap;
pub(crate) mod trap_fd;
mod traversal;