gentoo_stages/lib.rs
1//! Gentoo stage3 image support
2//!
3//! This crate provides functionality for fetching, parsing, and managing
4//! Gentoo Linux stage3 images.
5
6mod cache;
7mod client;
8mod error;
9mod stage3;
10
11pub use cache::Cache;
12pub use client::{Client, ClientBuilder};
13pub use error::Error;
14pub use gentoo_core::Arch;
15pub use stage3::Stage3;