1 2 3 4 5 6 7 8 9
fn main() { #[cfg(feature = "protobuf")] { println!("cargo:rerun-if-changed=proto/libdictenstein.proto"); prost_build::Config::new() .compile_protos(&["proto/libdictenstein.proto"], &["proto/"]) .expect("Failed to compile protobuf definitions"); } }