We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
tonic
1 parent ece6516 commit da4d1f4Copy full SHA for da4d1f4
crates/client/build.rs
@@ -70,7 +70,7 @@ fn main() {
70
71
tonic_build::configure()
72
.build_server(false)
73
- .compile_with_config(config, PROTO_FILES, &["vendor/"])
+ .compile_protos_with_config(config, PROTO_FILES, &["vendor/"])
74
.expect("Failed to generate GRPC bindings");
75
76
for module in FIXUP_MODULES {
crates/snapshots/build.rs
@@ -26,7 +26,7 @@ const FIXUP_MODULES: &[&str] = &["containerd.services.snapshots.v1"];
26
fn main() {
27
28
.build_server(true)
29
- .compile(PROTO_FILES, &["vendor/"])
+ .compile_protos(PROTO_FILES, &["vendor/"])
30
31
32
0 commit comments