style: apply cargo fmt workspace-wide
Pure formatting pass from `cargo fmt --all`. No logic changes. Separating this out so the 1.9 release feature commits that follow show only their intentional edits.
This commit is contained in:
@@ -13,11 +13,7 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
|
||||
.build_server(true)
|
||||
.build_client(true)
|
||||
.file_descriptor_set_path(&descriptor_path)
|
||||
.compile_with_config(
|
||||
prost_config,
|
||||
&proto_files,
|
||||
&["proto"],
|
||||
)?;
|
||||
.compile_with_config(prost_config, &proto_files, &["proto"])?;
|
||||
|
||||
Ok(())
|
||||
}
|
||||
|
||||
@@ -17,4 +17,5 @@ pub use prost_types;
|
||||
pub use tonic;
|
||||
|
||||
/// Encoded file descriptor set for gRPC reflection.
|
||||
pub const FILE_DESCRIPTOR_SET: &[u8] = include_bytes!(concat!(env!("OUT_DIR"), "/wfe_descriptor.bin"));
|
||||
pub const FILE_DESCRIPTOR_SET: &[u8] =
|
||||
include_bytes!(concat!(env!("OUT_DIR"), "/wfe_descriptor.bin"));
|
||||
|
||||
Reference in New Issue
Block a user