extern crate bindgen; extern crate protoc_rust_grpc; use std::env; use std::path::PathBuf; use std::process::Command; fn main() { protoc_rust_grpc::run(protoc_rust_grpc::Args { out_dir: "src/test", includes: &["src/protos/"], input: &[ "src/protos/pathplanner/path.proto", "src/protos/interop/obstacles.proto", "src/protos/interop/mission.proto", ], rust_protobuf: true, }).expect("protoc-rust-grpc"); }