summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2018-10-02 10:40:19 +0300
committerLars Wirzenius <liw@liw.fi>2018-10-02 10:40:19 +0300
commit7a8bdeb72979493c58c9cd8c79fa2fd6df6cf8c5 (patch)
tree39e5195ede1369c16359d294c4b7c9c801c869a6
parent3b96be47ec5409dda2c43207c4e86b76bb35ae70 (diff)
downloadsummainrs-7a8bdeb72979493c58c9cd8c79fa2fd6df6cf8c5.tar.gz
Refactor: order externs and uses
-rw-r--r--src/main.rs11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/main.rs b/src/main.rs
index ea37040..af3c0d3 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -1,14 +1,13 @@
+extern crate chrono;
+extern crate crypto_hash;
+extern crate serde_yaml;
+extern crate walkdir;
+
use std::env;
use std::io;
use std::collections::BTreeMap;
-
-extern crate walkdir;
use walkdir::{WalkDir, DirEntry};
-extern crate chrono;
-extern crate crypto_hash;
-extern crate serde_yaml;
-
mod format;