1 2 3 4 5 6 7 8 9 10 11
fn main() { protobuf_codegen_pure::Codegen::new() .out_dir("src") .inputs(["src/dnstap_pb.proto"]) .include("src") .customize(protobuf_codegen_pure::Customize { ..Default::default() }) .run() .expect("protoc"); }