appc 0.0.1-dev.4

Library implementing AppContainer Specification (appc-spec). Shared maintenance under https://github.com/camallo.
Documentation
1
2
3
4
5
6
7
8
9
extern crate appc;
extern crate serde_json;

#[test]
fn test_image_manifest_example() {
    let f = std::fs::File::open("tests/fixtures/example-image-manifest.json").expect("Missing fixture");
    let bufrd = std::io::BufReader::new(f);
    let _im: appc::schema::ImageManifest = serde_json::from_reader(bufrd).unwrap();
}