boxlite 0.9.3

Embeddable virtual machine runtime for secure, isolated code execution
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! REST API client backend for BoxLite.
//!
//! Provides a REST-based `RuntimeBackend` and `BoxBackend` implementation
//! that delegates all operations to a remote BoxLite REST API server.
//!
//! Enabled with the `rest` feature flag.

pub(crate) mod client;
pub(crate) mod error;
mod exec;
pub(crate) mod litebox;
pub mod options;
pub(crate) mod runtime;
pub(crate) mod types;