mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +03:00
77e88c1ded
Release Notes: - N/A --------- Co-authored-by: Nathan <nathan@zed.dev>
8 lines
209 B
Rust
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();
|
|
}
|