mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +03:00
d5b60ad124
Co-Authored-By: Max Brunsfeld <maxbrunsfeld@gmail.com>
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();
|
|
}
|