Skip to content

Commit

Permalink
chore: fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
Frando committed Oct 3, 2023
1 parent 76b345e commit 67aa476
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions iroh-sync/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,16 @@
//! [paper]: https://arxiv.org/abs/2212.13567
#![deny(missing_docs, rustdoc::broken_intra_doc_links)]

mod heads;
mod keys;
#[cfg(feature = "metrics")]
pub mod metrics;
#[cfg(feature = "net")]
pub mod net;
mod ranger;
mod heads;
pub mod store;
pub mod sync;

pub use keys::*;
pub use heads::*;
pub use keys::*;
pub use sync::*;
2 changes: 1 addition & 1 deletion iroh-sync/src/store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ use rand_core::CryptoRngCore;
use serde::{Deserialize, Serialize};

use crate::{
ranger,
heads::AuthorHeads,
ranger,
sync::{Author, Namespace, Replica, SignedEntry},
AuthorId, NamespaceId,
};
Expand Down
2 changes: 1 addition & 1 deletion iroh-sync/src/sync.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ use ed25519_dalek::{Signature, SignatureError};
use iroh_bytes::Hash;
use serde::{Deserialize, Serialize};

use crate::{heads::SyncOutcome, store};
use crate::{
ranger::{self, Fingerprint, Peer, RangeEntry, RangeKey},
store::PublicKeyStore,
};
use crate::{heads::SyncOutcome, store};

pub use crate::keys::*;

Expand Down

0 comments on commit 67aa476

Please sign in to comment.