xref: /aosp_15_r20/external/bazelbuild-rules_rust/examples/bzlmod/proto/proto_bindings/build.rs (revision d4726bddaa87cc4778e7472feed243fa4b6c267f)

main() -> Result<(), Box<dyn std::error::Error>>1 fn main() -> Result<(), Box<dyn std::error::Error>> {
2     tonic_build::configure()
3         .compile(&["proto/helloworld.proto"], &["proto"])
4         .expect("Failed to compile proto specification");
5     Ok(())
6 }
7