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 1839bc9 commit 973eb24Copy full SHA for 973eb24
lazer/publisher_sdk/rust/build.rs
@@ -8,12 +8,13 @@ fn main() -> Result<()> {
8
println!("cargo:rerun-if-changed=../proto/");
9
10
protobuf_codegen::Codegen::new()
11
+ .protoc()
12
+ .protoc_extra_arg("--include_source_info")
13
.include("../proto")
14
.input("../proto/publisher_update.proto")
15
.input("../proto/pyth_lazer_transaction.proto")
16
.input("../proto/transaction_envelope.proto")
17
.cargo_out_dir("protobuf")
- .protoc_extra_arg("--include_source_info")
18
.run_from_script();
19
20
Ok(())
0 commit comments