use tonic_build; fn main() -> Result<(), Box> { tonic_build::configure() .build_server(false) .compile( &["proto/bazel-remote-apis/build/bazel/remote/execution/v2/remote_execution.proto"], &["proto/bazel-remote-apis", "proto/googleapis"], )?; Ok(()) }