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
10
11
extern crate appc;
extern crate serde_json;

use std::{io, fs};

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