We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5088387 commit fedcef3Copy full SHA for fedcef3
protobufs/build.rs
@@ -146,11 +146,14 @@ fn main() -> anyhow::Result<()> {
146
"crate::services::ConsensusMessageChunkInfo",
147
)
148
.out_dir(&mirror_out_dir)
149
+ .emit_rerun_if_changed(false)
150
.compile_protos(
151
&["./mirror/consensus_service.proto", "./mirror/mirror_network_service.proto"],
152
&["./mirror/", out_path.to_str().unwrap()],
153
)?;
154
155
+ println!("cargo:rerun-if-changed={}", "./mirror");
156
+
157
remove_useless_comments(&mirror_out_dir.join("proto.rs"))?;
158
159
// sdk
0 commit comments