oci-spec 0.3.0

Open Container Initiative Specifictions in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! [OCI image spec](https://github.com/opencontainers/image-spec) types and definitions.

mod annotations;
mod config;
mod descriptor;
mod index;
mod manifest;

pub use annotations::*;
pub use config::*;
pub use descriptor::*;
pub use index::*;
pub use manifest::*;