mirror of
https://github.com/Qortal/pirate-librustzcash.git
synced 2025-01-30 23:42:13 +00:00
12 lines
281 B
Rust
12 lines
281 B
Rust
use protobuf_codegen_pure;
|
|
|
|
fn main() {
|
|
protobuf_codegen_pure::run(protobuf_codegen_pure::Args {
|
|
out_dir: "src/proto",
|
|
input: &["proto/compact_formats.proto"],
|
|
includes: &["proto"],
|
|
customize: Default::default(),
|
|
})
|
|
.expect("protoc");
|
|
}
|