fn main() { // Compile gRPC protobufs for Runner <-> Orchestrator println!("cargo:rerun-if-changed=proto/runner.proto"); tonic_build::configure() .build_server(true) .compile_protos(&["proto/runner.proto"], &["proto"]) .expect("failed to compile runner proto"); }