1 2 3 4 5 6 7 8 9 10 11 12 13
// Copyright 2025 David Weikersdorfer use std::io::Result; fn main() -> Result<()> { let mut config = prost_build::Config::new(); config .type_attribute(".", "#[derive(serde::Serialize, serde::Deserialize)]") .compile_protos(&["protos/configure.proto"], &["src/protos"])?; Ok(()) }