Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
rob-maron committed Feb 2, 2024
1 parent 0601640 commit 432b624
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 6 deletions.
1 change: 1 addition & 0 deletions broker/src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions marshal/src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

4 changes: 1 addition & 3 deletions proto/src/connection/flow.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@
//! but with different connection and authentication methods. For example, broker <-> broker
//! is different from user <-> broker.
use std::{
time::{SystemTime, UNIX_EPOCH},
};
use std::time::{SystemTime, UNIX_EPOCH};

use ark_serialize::{CanonicalDeserialize, CanonicalSerialize};
use async_trait::async_trait;
Expand Down
1 change: 0 additions & 1 deletion proto/src/connection/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,3 @@
pub mod flow;
pub mod protocols;
pub mod sticky;

2 changes: 1 addition & 1 deletion proto/src/connection/protocols/mod.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//! This module defines connections, listeners, and their implementations.
use std::{net::SocketAddr};
use std::net::SocketAddr;

use async_trait::async_trait;

Expand Down
2 changes: 1 addition & 1 deletion proto/src/connection/protocols/quic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ use crate::{
MAX_MESSAGE_SIZE,
};
use core::hash::Hash;
use std::{net::ToSocketAddrs};
use std::net::ToSocketAddrs;

use super::{Connection, Listener, Protocol};

Expand Down

0 comments on commit 432b624

Please sign in to comment.