vivacity-core 0.8.0

Manifests, content hash, platform checks, dist fetching, content-addressed store and installation for vivacity
Documentation
1
2
3
4
5
6
7
8
fn main() {
    let text = std::env::args().nth(1).expect("json arg");
    let v: serde_json::Value = serde_json::from_str(&text).expect("parse");
    println!(
        "{}",
        vivacity_core::phpjson::php_json_encode(&v).expect("enc")
    );
}