From 4376167d742858019a86bba51ad7348922ac4b78 Mon Sep 17 00:00:00 2001 From: default Date: Tue, 16 Jun 2026 11:09:28 +0000 Subject: [PATCH] feat: add experimental support for proto3 optional fields in Nginx handler --- crates/nxmesh-proto/build.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/nxmesh-proto/build.rs b/crates/nxmesh-proto/build.rs index 1741d2c..12e73d1 100644 --- a/crates/nxmesh-proto/build.rs +++ b/crates/nxmesh-proto/build.rs @@ -4,6 +4,7 @@ fn main() -> Result<()> { tonic_prost_build::configure() .build_server(true) .build_client(true) + .protoc_arg("--experimental_allow_proto3_optional") .compile_protos(&["proto/agent.proto"], &["proto"])?; Ok(()) }