aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2017-10-26 21:37:06 -0700
committerBryan Newbold <bnewbold@robocracy.org>2017-10-26 21:37:06 -0700
commitac9e4183c380dcd7c52e9b8f6e07287982a33aac (patch)
tree3324f429af5f341da4755248eb9826d650034cc6 /src/lib.rs
parent430b278e20aa0a205dd38ec97289830cc0f84187 (diff)
downloadgeniza-ac9e4183c380dcd7c52e9b8f6e07287982a33aac.tar.gz
geniza-ac9e4183c380dcd7c52e9b8f6e07287982a33aac.zip
rustfmt
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs12
1 files changed, 6 insertions, 6 deletions
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;