vm-rs 0.2.4

Cross-platform VM lifecycle management — Apple Virtualization.framework (macOS) + Cloud Hypervisor (Linux)
Documentation
1
2
3
4
5
6
7
8
9
10
//! OCI image management — registry client + content-addressable store.
//!
//! Pull images from any OCI-compliant registry (Docker Hub, GitHub Container Registry,
//! private registries) and store them locally with content-addressable blobs.

pub mod registry;
pub mod store;

pub use registry::pull;
pub use store::{ImageConfig, ImageStore};