Files
tools/inference/build.rs
T

8 lines
267 B
Rust
Raw Normal View History

2026-08-12 14:11:47 -04:00
fn main() {
tonic_prost_build::compile_protos("../proto/inference.proto")
.unwrap_or_else(|e| panic!("Failed to compile protos {:?}", e));
println!("cargo::rerun-if-changed=build.rs");
println!("cargo::rerun-if-changed=proto/inference.proto");
2026-09-02 23:05:29 -04:00
}