firecracker_sdk/lib.rs
1//! A ***Non-official*** library for easy work with FirecrackerVM from Rust.
2//!
3//! Exemple:
4//! ```no_compile
5//! let process = FirecrackerStartup::new()
6//! .set_api_socket("/tmp/some.socket")
7//! .download_rootfs(true)
8//! .download_kernel(true)
9//! .start().await.unwrap();
10//! ```
11//! Before starting work, we recommend that you familiarize yourself with the official [documentation](https://github.com/firecracker-microvm/firecracker/blob/main/docs/getting-started.md).
12
13pub mod api;
14pub mod domain;
15pub mod infrastructure;