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 fe554cd commit b03dadaCopy full SHA for b03dada
protobufs/build.rs
@@ -1,11 +1,7 @@
1
// SPDX-License-Identifier: Apache-2.0
2
3
use std::env;
4
-use std::fs::{
5
- self,
6
- create_dir_all,
7
- read_dir,
8
-};
+use std::fs::{self, create_dir_all, read_dir};
9
use std::path::Path;
10
11
use regex::RegexBuilder;
@@ -252,7 +248,7 @@ fn main() -> anyhow::Result<()> {
252
248
.services_same("UtilPrngTransactionBody")
253
249
.services_same("VirtualAddress");
254
250
255
- cfg.out_dir(&sdk_out_dir).compile_protos(
251
+ cfg.out_dir(&sdk_out_dir).emit_rerun_if_changed(false).compile_protos(
256
&["./sdk/transaction_list.proto"],
257
&["./sdk/", services_tmp_path.as_os_str().to_str().unwrap()],
258
)?;
0 commit comments