Code at the speed of thought – Zed is a high-performance, multiplayer code editor from the creators of Atom and Tree-sitter.
1fn main() { 2 let mut build = prost_build::Config::new(); 3 // build.protoc_arg("--experimental_allow_proto3_optional"); 4 build 5 .compile_protos(&["proto/zed.proto"], &["proto"]) 6 .unwrap(); 7}