2018-10-12 10:22:58 -07:00
|
|
|
fn main() {
|
2020-05-21 23:55:46 -07:00
|
|
|
protobuf_codegen_pure::Codegen::new()
|
|
|
|
.out_dir("src/proto")
|
|
|
|
.inputs(&["proto/compact_formats.proto"])
|
|
|
|
.includes(&["proto"])
|
|
|
|
.run()
|
|
|
|
.expect("Protobuf codegen failed");
|
2018-10-12 10:22:58 -07:00
|
|
|
}
|