Skip to content

Commit 4fea65b

Browse files
committed
bitar: bump prost to 0.11
1 parent c219cef commit 4fea65b

File tree

4 files changed

+21
-21
lines changed

4 files changed

+21
-21
lines changed

.github/workflows/cd.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@ jobs:
4343
profile: minimal
4444
default: true
4545
target: ${{ matrix.target }}
46+
- name: Install protoc
47+
uses: arduino/setup-protoc@v1
4648
- name: Enable static CRT linkage (Windows)
4749
if: ${{ matrix.os == 'windows-latest' }}
4850
run: |

.github/workflows/rust.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ jobs:
2222
toolchain: ${{ matrix.rust }}
2323
override: true
2424

25+
- name: Install protoc
26+
uses: arduino/setup-protoc@v1
27+
2528
- uses: actions-rs/cargo@v1
2629
name: build
2730
with:
@@ -59,6 +62,9 @@ jobs:
5962
toolchain: ${{ matrix.rust }}
6063
override: true
6164

65+
- name: Install protoc
66+
uses: arduino/setup-protoc@v1
67+
6268
- uses: actions-rs/cargo@v1
6369
name: build
6470
with:
@@ -145,6 +151,9 @@ jobs:
145151
- name: Install clippy
146152
run: rustup component add clippy
147153

154+
- name: Install protoc
155+
uses: arduino/setup-protoc@v1
156+
148157
- name: Run cargo clippy
149158
uses: actions-rs/cargo@v1
150159
with:

Cargo.lock

Lines changed: 8 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bitar/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ categories = ["compression", "filesystem"]
1212

1313

1414
[build-dependencies]
15-
prost-build = "0.10"
15+
prost-build = "0.11"
1616

1717
[dependencies]
1818
blake2 = "0.10"
19-
prost = "0.10"
19+
prost = "0.11"
2020
log = "0.4"
2121
brotli-decompressor = "2.3"
2222
brotli = { version = "3.3", default-features = false, features = ["std", "disable-timer"], optional = true }

0 commit comments

Comments
 (0)