tealeaf-core 2.0.0-beta.8

Schema-aware data format with human-readable text and compact binary
Documentation
1
2
3
4
5
6
7
8
fn main() {
    let proto_path = "benches_proto/messages.proto";
    if std::path::Path::new(proto_path).exists() {
        prost_build::Config::new()
            .compile_protos(&[proto_path], &["benches_proto/"])
            .expect("Failed to compile protobuf");
    }
}