summaryrefslogtreecommitdiffstats
path: root/src/history.rs
diff options
context:
space:
mode:
authorJiayi Zhao <jeff.no.zhao@gmail.com>2019-02-19 17:43:13 -0500
committerJiayi Zhao <jeff.no.zhao@gmail.com>2019-02-19 17:43:25 -0500
commit0be734a6d7154573d8e570980f0af27ac5cb8190 (patch)
tree76789bee4f068ba000a13921ae5caec0a8c4cabe /src/history.rs
parent348ef3c36115ac7060f141c27157b6b2f5c91f37 (diff)
rust 2018 and clippy
Diffstat (limited to 'src/history.rs')
-rw-r--r--src/history.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/history.rs b/src/history.rs
index bc1fe7c..fc69338 100644
--- a/src/history.rs
+++ b/src/history.rs
@@ -1,8 +1,8 @@
use std::collections::{hash_map::Entry, HashMap};
use std::path::{Path, PathBuf};
-use sort;
-use structs;
+use crate::sort;
+use crate::structs;
pub struct DirHistory {
map: HashMap<PathBuf, structs::JoshutoDirList>,