flowgger 0.3.3

Flowgger is a fast, simple and lightweight data collector.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[cfg(feature = "capnp-recompile")]
extern crate capnpc;

#[cfg(feature = "capnp-recompile")]
fn main() {
    ::capnpc::CompilerCommand::new()
        .src_prefix("src/flowgger")
        .file("record.capnp")
        .run()
        .expect("schema compiled comand");
}

#[cfg(not(feature = "capnp-recompile"))]
fn main() {}