disperse 0.1.1

automation for creation of releases
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use std::path::PathBuf;

fn main() {
    let top_dir = PathBuf::from(std::env::var("CARGO_MANIFEST_DIR").unwrap())
        .canonicalize()
        .unwrap();

    protobuf_codegen::Codegen::new()
        .cargo_out_dir("generated")
        .inputs([top_dir.join("config.proto")])
        .include(top_dir)
        .run_from_script();
}