firecracker_sdk/lib.rs
1//! A ***Non-official*** library for easy work with FirecrackerVM from Rust.
2//!
3//! Exemple:
4//! ```no_run
5//! let vm_process = FirecrackerStartup::new()
6//! .api_sock("/tmp/some.socket")
7//! .start().unwrap();
8//!
9//! let vm_socket = VMSocket::new().unwrap();
10//! let vm = vm_socket.connect("/tmp/some.socket");
11//! ```
12//! 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).
13
14pub mod vm;