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 1c8fb6c commit 1839bc9Copy full SHA for 1839bc9
.github/workflows/publish-rust-lazer-publisher-sdk.yml
@@ -12,6 +12,10 @@ jobs:
12
steps:
13
- name: Checkout sources
14
uses: actions/checkout@v2
15
+ - name: Install Protoc
16
+ uses: arduino/setup-protoc@v3
17
+ with:
18
+ version: "30.2"
19
20
- run: ./publish.sh
21
env:
lazer/publisher_sdk/rust/build.rs
@@ -8,12 +8,12 @@ fn main() -> Result<()> {
8
println!("cargo:rerun-if-changed=../proto/");
9
10
protobuf_codegen::Codegen::new()
11
- .pure()
.include("../proto")
.input("../proto/publisher_update.proto")
.input("../proto/pyth_lazer_transaction.proto")
.input("../proto/transaction_envelope.proto")
.cargo_out_dir("protobuf")
+ .protoc_extra_arg("--include_source_info")
.run_from_script();
Ok(())
0 commit comments