Revert change to rpc/build.rs

This commit is contained in:
Piotr Osiewicz
2024-03-06 15:53:35 +01:00
parent 70b7718f18
commit fdfd09a360
2 changed files with 1 additions and 2 deletions

View File

@@ -3125,7 +3125,7 @@ async fn test_buffer_is_dirty(cx: &mut gpui::TestAppContext) {
events.lock().clear();
// After restoring the buffer to its previously-saved state,
// the buffer is no longer considered dirty
// the buffer is not considered dirty anymore.
buffer.edit([(1..3, "")], None, cx);
assert!(buffer.text() == "ac");
assert!(!buffer.is_dirty());

View File

@@ -2,7 +2,6 @@ fn main() {
let mut build = prost_build::Config::new();
build
.type_attribute(".", "#[derive(serde::Serialize)]")
.type_attribute(".", "#[allow(clippy::large_enum_variant)]")
.compile_protos(&["proto/zed.proto"], &["proto"])
.unwrap();
}