shoebill/build.rs

10 lines
269 B
Rust
Raw Normal View History

2023-11-05 20:36:05 +00:00
fn main() -> Result<(), Box<dyn std::error::Error>> {
tonic_build::configure()
.type_attribute(
".",
"#[derive(serde::Deserialize, serde::Serialize)]",
)
.compile(&["proto/shoebill.proto"], &["proto"])?;
Ok(())
}