From ac9e4183c380dcd7c52e9b8f6e07287982a33aac Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Thu, 26 Oct 2017 21:37:06 -0700 Subject: rustfmt --- src/lib.rs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/lib.rs') diff --git a/src/lib.rs b/src/lib.rs index d106895..c09301b 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -// Free Software under GPL-3.0, see LICENSE +// Free Software under GPL-3.0, see LICENSE // Copyright 2017 Bryan Newbold //! This is a hobby/learning implementation of the dat distributed data synchronization system. @@ -13,16 +13,16 @@ //! Additional notes in the source code for this repo, under the 'notes' directory. Also, see //! README. +extern crate crypto; +extern crate env_logger; #[macro_use] extern crate error_chain; +extern crate integer_encoding; #[macro_use] extern crate log; -extern crate env_logger; -extern crate integer_encoding; -extern crate crypto; -extern crate sodiumoxide; -extern crate rand; extern crate protobuf; +extern crate rand; +extern crate sodiumoxide; #[cfg(test)] extern crate tempdir; -- cgit v1.2.3