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 vm_socket = VMSocket::new().unwrap();
let vm = vm_socket.connect("/tmp/some.socket");Before starting work, we recommend that you familiarize yourself with the official documentation.