intermodal-rs 0.0.4

Container handling in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Functionality for Handling Container Images
//!
//! # References
//! - Tries to implement a functionality similar to the following `Go` library
//! [Container Images Go library](https://github.com/containers/image/)

pub mod api;
pub mod docker;
pub mod manifest;
pub mod oci;
mod platform;
pub mod transports;
pub mod types;