oci_spec/distribution/mod.rs
1//! [OCI distribution spec](https://github.com/opencontainers/distribution-spec) types and definitions.
2//!
3//! The Open Container Initiative Distribution Specification (a.k.a. "OCI Distribution Spec")
4//! defines an API protocol to facilitate and standardize the distribution of content.
5//!
6//! While OCI Image is the most prominent, the specification is designed to be agnostic of content
7//! types. Concepts such as "manifests" and "digests", are currently defined in the [Open Container
8//! Initiative Image Format Specification](https://github.com/opencontainers/image-spec) (a.k.a.
9//! "OCI Image Spec").
10//!
11//! To support other artifact types, please see the [Open Container Initiative Artifact Authors
12//! Guide](https://github.com/opencontainers/artifacts) (a.k.a. "OCI Artifacts").
13
14mod error;
15mod reference;
16mod repository;
17mod tag;
18mod version;
19
20pub use error::*;
21pub use reference::*;
22pub use repository::*;
23pub use tag::*;
24pub use version::*;