landstrip 0.17.0

Sandbox for coding agents with parametrized state
1
2
3
4
5
6
7
8
9
10
11
// 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;
pub(crate) mod trap;
pub(crate) mod trap_fd;