mirror of
https://github.com/fluencelabs/rust-libp2p
synced 2025-05-12 02:47:15 +00:00
11 lines
298 B
Rust
11 lines
298 B
Rust
extern crate protobuf_codegen_pure;
|
|
|
|
fn main() {
|
|
protobuf_codegen_pure::run(protobuf_codegen_pure::Args {
|
|
out_dir: "src/protobuf_structs",
|
|
input: &["src/structs.proto"],
|
|
includes: &["src"],
|
|
customize: Default::default(),
|
|
}).expect("protoc failed to run");
|
|
}
|