axocoatl-isolation 0.0.1

Tiered isolation layer for Axocoatl tool execution (Wasmtime + youki OCI + Firecracker)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod error;
pub mod firecracker;
pub mod oci_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 tier::*;
pub use vsock::*;

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