Skip to content

Commit

Permalink
cargo fmt --check
Browse files Browse the repository at this point in the history
  • Loading branch information
alvarocurt committed Oct 22, 2024
1 parent 7b02298 commit 07e16fe
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions edgeless_node/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
fn main() -> Result<(), Box<dyn std::error::Error>> {
// Add flag enabling optional proto3 in tonic_build
tonic_build::configure().protoc_arg("--experimental_allow_proto3_optional").compile(
&[
"src/resources/dda/proto/com.proto",
"src/resources/dda/proto/state.proto",
"src/resources/dda/proto/store.proto"
],
&["src/resources/dda/proto"]
)?;
&[
"src/resources/dda/proto/com.proto",
"src/resources/dda/proto/state.proto",
"src/resources/dda/proto/store.proto"
],
&["src/resources/dda/proto"]
)?;

// recommended method for generating rust bindings for gRPC for DDA
// tonic_build::compile_protos("src/resources/dda/proto/com.proto")?;
Expand Down

0 comments on commit 07e16fe

Please sign in to comment.