pub fn main() {
tonic_prost_build::configure()
.protoc_arg("--experimental_allow_proto3_optional")
.emit_rerun_if_changed(true)
.compile_protos(
&[
"./protos/context.proto",
"./protos/cr.proto",
"./protos/ingress.proto",
"./protos/repo.proto",
"./protos/runtime.proto",
"./protos/dns_provider.proto",
],
&["./protos"],
)
.unwrap();
}