dora-message 0.2.2

`dora` goal is to be a low latency, composable, and distributed data flow.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
fn main() {
    build_runtime();

    println!("cargo:rerun-if-changed=build.rs");
    println!("cargo:rerun-if-changed=schema/message.capnp");
}

fn build_runtime() {
    capnpc::CompilerCommand::new()
        .src_prefix("schema")
        .file("schema/message.capnp")
        .output_path("src")
        .run()
        .expect("schema compiler command");
}