oci-spec is a library for Serializer/Deserialiser oci-runtime-spec and oci-image-spec config.
``` extern crate oci_spec;
use oci_spec::runtime::Spec;
fn main() { let spec = match Spec::load("config.json") { Ok(s) => s, Err(e) => panic!("{}", e), } println("oci-runtime-spec version is {}", spec.version); } ```
oci-spec is under the MIT license.