cln-nip47/build.rs
2026-08-08 15:06:37 +02:00

6 lines
238 B
Rust

fn main() {
tonic_prost_build::configure()
.protoc_arg("--experimental_allow_proto3_optional")
.compile_protos(&["protos/hold.proto"], &["protos"])
.unwrap_or_else(|e| panic!("Could not build protos: {e}"));
}