Expand description
A Non-official library for easy work with FirecrackerVM from Rust.
Exemple:
let vm_process = FirecrackerStartup::new()
.api_sock("/tmp/some.socket")
.start().unwrap();
let firecracker_socket = FirecrackerSocket::new().unwrap();
let firecracker_stream = firecracker_socket.connect("/tmp/some.socket");Before starting work, we recommend that you familiarize yourself with the official documentation.