axocoatl-isolation 0.1.1

Tiered isolation layer for Axocoatl tool execution (Wasmtime + youki OCI + Firecracker)
Documentation
pub mod error;
pub mod firecracker;
pub mod oci_sandbox;
pub mod podman;
pub mod pty;
pub mod session_sandbox;
pub mod tier;
pub mod vsock;

#[cfg(feature = "wasmtime-sandbox")]
pub mod wasmtime_sandbox;

pub use error::*;
pub use firecracker::*;
pub use oci_sandbox::*;
pub use session_sandbox::*;
pub use tier::*;
pub use vsock::*;

#[cfg(feature = "wasmtime-sandbox")]
pub use wasmtime_sandbox::*;