xref: /tonic/interop/build.rs (revision 7173808a)

main()1 fn main() {
2     let proto = "proto/grpc/testing/test.proto";
3 
4     tonic_build::compile_protos(proto).unwrap();
5 
6     // prevent needing to rebuild if files (or deps) haven't changed
7     println!("cargo:rerun-if-changed={}", proto);
8 }
9