rics 0.2.0

Remote Inter-Connected Streams - datastream and bus routing
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16


extern crate protoc_rust;

use protoc_rust::Customize;

fn main() {
	protoc_rust::run(protoc_rust::Args {
	    out_dir: "src",
	    input: &["rics.proto"],
	    includes: &[],
	    customize: Customize {
	        ..Default::default()
	    },
	}).expect("protoc");
}