Skip to content

Commit 13fae2f

Browse files
authored
chore: update protobuf to 4.32.0 (#2391)
1 parent dee02fe commit 13fae2f

File tree

5 files changed

+8
-10
lines changed

5 files changed

+8
-10
lines changed

.github/workflows/CI.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484
components: clippy
8585
- uses: taiki-e/install-action@v2
8686
with:
87-
tool: protoc@3.31.1
87+
tool: protoc@3.32.0
8888
- name: Restore protoc plugin from cache
8989
id: cache-plugin
9090
uses: actions/cache@v4
@@ -119,7 +119,7 @@ jobs:
119119
- uses: taiki-e/install-action@cargo-udeps
120120
- uses: taiki-e/install-action@v2
121121
with:
122-
tool: protoc@3.31.1
122+
tool: protoc@3.32.0
123123
- name: Restore protoc plugin from cache
124124
id: cache-plugin
125125
uses: actions/cache@v4
@@ -153,7 +153,7 @@ jobs:
153153
- uses: taiki-e/install-action@cargo-hack
154154
- uses: taiki-e/install-action@v2
155155
with:
156-
tool: protoc@3.31.1
156+
tool: protoc@3.32.0
157157
- name: Restore protoc plugin from cache
158158
id: cache-plugin
159159
uses: actions/cache@v4
@@ -206,7 +206,7 @@ jobs:
206206
- uses: hecrj/setup-rust-action@v2
207207
- uses: taiki-e/install-action@v2
208208
with:
209-
tool: protoc@3.31.1
209+
tool: protoc@3.32.0
210210
- name: Restore protoc plugin from cache
211211
id: cache-plugin
212212
uses: actions/cache@v4
@@ -245,7 +245,7 @@ jobs:
245245
- uses: hecrj/setup-rust-action@v2
246246
- uses: taiki-e/install-action@v2
247247
with:
248-
tool: protoc@3.31.1
248+
tool: protoc@3.32.0
249249
- name: Restore protoc plugin from cache
250250
id: cache-plugin
251251
uses: actions/cache@v4

interop/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ grpc = {path = "../grpc"}
3232
# We also need the protobuf-codegen crate to support configuring the path
3333
# to the protobuf crate used in the generated message code, instead of
3434
# defaulting to `::protobuf`.
35-
protobuf = { version = "4.31.1-release" }
35+
protobuf = { version = "4.32.0-release" }
3636
tonic-protobuf = {path = "../tonic-protobuf"}
3737

3838
[build-dependencies]

tonic-protobuf-build/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ publish = false
88

99
[dependencies]
1010
prettyplease = "0.2.35"
11-
protobuf-codegen = { version = "4.31.1-release" }
11+
protobuf-codegen = { version = "4.32.0-release" }
1212
syn = "2.0.104"

tonic-protobuf-build/src/lib.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,6 @@ impl From<&Dependency> for protobuf_codegen::Dependency {
9595
protobuf_codegen::Dependency {
9696
crate_name: val.crate_name.clone(),
9797
proto_import_paths: val.proto_import_paths.clone(),
98-
// The following field is not used by protobuf codegen.
99-
c_include_paths: Vec::new(),
10098
proto_files: val.proto_files.clone(),
10199
}
102100
}

tonic-protobuf/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ publish = false
99
[dependencies]
1010
tonic = { version = "0.14.0", path = "../tonic", default-features = false, features = ["codegen"] }
1111
bytes = "1"
12-
protobuf = { version = "4.31.1-release" }
12+
protobuf = { version = "4.32.0-release" }
1313

1414
[package.metadata.cargo_check_external_types]
1515
allowed_external_types = [

0 commit comments

Comments
 (0)