From 7a8bdeb72979493c58c9cd8c79fa2fd6df6cf8c5 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Tue, 2 Oct 2018 10:40:19 +0300 Subject: Refactor: order externs and uses --- src/main.rs | 11 +++++------ 1 file 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; -- cgit v1.2.1