From 83b6137d8b6d7ac0aa8b0772abc7ef14161b5cc0 Mon Sep 17 00:00:00 2001 From: Lucas Meier Date: Thu, 5 Oct 2023 01:09:46 -0700 Subject: [PATCH] Run rustfmt --- crates/bin/pcli/src/command/ceremony.rs | 5 ++++- crates/crypto/proof-setup/src/lib.rs | 2 +- tools/summonerd/src/server.rs | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/crates/bin/pcli/src/command/ceremony.rs b/crates/bin/pcli/src/command/ceremony.rs index 4c79106a1c..b646188ee9 100644 --- a/crates/bin/pcli/src/command/ceremony.rs +++ b/crates/bin/pcli/src/command/ceremony.rs @@ -49,7 +49,10 @@ impl CeremonyCmd { }) .await?; let mut client = - CeremonyCoordinatorServiceClient::connect(coordinator_url.to_string()).await?.max_decoding_message_size(MAX_MESSAGE_SIZE).max_encoding_message_size(MAX_MESSAGE_SIZE); + CeremonyCoordinatorServiceClient::connect(coordinator_url.to_string()) + .await? + .max_decoding_message_size(MAX_MESSAGE_SIZE) + .max_encoding_message_size(MAX_MESSAGE_SIZE); let mut response_rx = client .participate(ReceiverStream::new(req_rx)) .await? diff --git a/crates/crypto/proof-setup/src/lib.rs b/crates/crypto/proof-setup/src/lib.rs index 2799b5de41..a778ed0249 100644 --- a/crates/crypto/proof-setup/src/lib.rs +++ b/crates/crypto/proof-setup/src/lib.rs @@ -1,2 +1,2 @@ -pub mod single; pub mod all; +pub mod single; diff --git a/tools/summonerd/src/server.rs b/tools/summonerd/src/server.rs index a1595a608a..434a89b278 100644 --- a/tools/summonerd/src/server.rs +++ b/tools/summonerd/src/server.rs @@ -19,7 +19,7 @@ impl CoordinatorService { pub fn new(storage: Storage, participant_tx: mpsc::Sender) -> Self { Self { storage, - participant_tx + participant_tx, } } }