tinysandbox 0.2.0

Ultra-minimal Linux-like sandbox for AI agents: shell, coreutils, VFS, and a Wasmtime-hosted JS runtime in one crate
Documentation
1
2
3
4
5
6
7
#![deny(unsafe_code)]

#[cfg(feature = "js")]
pub mod js;
pub mod sandbox;
pub mod shell;
pub mod vfs;