nex-account/build.rs
2026-06-16 13:48:37 +02:00

7 lines
250 B
Rust

fn main() -> Result<(), Box<dyn std::error::Error>> {
println!("cargo:rerun-if-changed=build.rs");
println!("cargo:rerun-if-changed=./grpc.proto");
tonic_prost_build::configure().compile_protos(&["./grpc.proto"], &["./"])?;
Ok(())
}