mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-09 00:50:04 +03:00
8 lines
214 B
Rust
8 lines
214 B
Rust
|
fn main() {
|
||
|
let mut build = prost_build::Config::new();
|
||
|
// build.protoc_arg("--experimental_allow_proto3_optional");
|
||
|
build
|
||
|
.compile_protos(&["proto/zed.proto"], &["proto"])
|
||
|
.unwrap();
|
||
|
}
|