1 2 3 4 5 6 7 8
fn main() { prost_build::Config::new() .out_dir("src/pb") .type_attribute(".", "#[derive(Eq, Hash)]") .compile_protos(&["pwd.proto"], &["proto"]) .unwrap(); }