auth-yes/spire_ffi/build.rs

9 lines
217 B
Rust

fn main() -> Result<(), Box<dyn std::error::Error>> {
tonic_build::configure()
.build_server(false)
.compile(
&["proto/workload.proto"],
&["proto"],
)?;
Ok(())
}