Skip to main content

vmexec/
lib.rs

1//! Run a single command in a speedy virtual machine with zero-setup
2
3pub mod error;
4pub mod qemu;
5pub mod runner;
6pub mod ssh;
7pub mod types;
8pub mod utils;
9pub mod vm_images;
10pub mod vms;