eventstore 0.5.1

GetEventStore TCP client
Documentation
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/internal",
        input: &["protos/messages.proto"],
        includes: &["protos"],
        customize: Customize {
            carllerche_bytes_for_bytes: Some(true),
            carllerche_bytes_for_string: Some(true),
            ..Default::default()
        },
    }).expect("protoc");
}