fix: build gRPC server code

This will allow the gRPC example to compile.

Fix for https://github.com/scsibug/nostr-rs-relay/issues/141
This commit is contained in:
Václav Navrátil 2023-08-07 16:42:19 +02:00 committed by Greg Heartsfield
parent b1957ab2b1
commit 79abd981e1
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
fn main() -> Result<(), Box<dyn std::error::Error>> {
tonic_build::configure()
.build_server(false)
.build_server(true)
.protoc_arg("--experimental_allow_proto3_optional")
.compile(&["../../proto/nauthz.proto"], &["../../proto"])?;
Ok(())