prototype...

This commit is contained in:
open-trade
2020-03-06 17:18:22 +08:00
parent d188a5f5ea
commit 1695b5e357
11 changed files with 1045 additions and 10 deletions

10
build.rs Normal file
View File

@@ -0,0 +1,10 @@
fn main() {
protobuf_codegen_pure::run(protobuf_codegen_pure::Args {
out_dir: "src/protos",
input: &["protos/message.proto"],
includes: &["protos"],
customize: protobuf_codegen_pure::Customize {
..Default::default()
},
}).unwrap();
}