zed/crates/rpc/build.rs
2024-01-12 20:10:40 -08:00

8 lines
209 B
Rust

fn main() {
let mut build = prost_build::Config::new();
build
.type_attribute(".", "#[derive(serde::Serialize)]")
.compile_protos(&["proto/zed.proto"], &["proto"])
.unwrap();
}