summaryrefslogtreecommitdiffstats
path: root/bin/core/imag-store/src/get.rs
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2019-02-28 17:28:32 +0100
committerMatthias Beyer <mail@beyermatthias.de>2019-05-18 00:20:59 +0200
commit1d8984461395c37fdbcd59a0b9488b076084c89a (patch)
treeb98795420280291c9dc2a9d56229b9af593f2bcb /bin/core/imag-store/src/get.rs
parent51daf28509b913a8159ad3a097304645db7e263f (diff)
Run 'cargo fix' for rust-2018
With this patch we move the codebase to Rust-2018. The diff was generated by executing cargo fix --all --all-features --edition on the codebase. Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
Diffstat (limited to 'bin/core/imag-store/src/get.rs')
-rw-r--r--bin/core/imag-store/src/get.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/core/imag-store/src/get.rs b/bin/core/imag-store/src/get.rs
index bf9a1eea..6885f594 100644
--- a/bin/core/imag-store/src/get.rs
+++ b/bin/core/imag-store/src/get.rs
@@ -24,7 +24,7 @@ use libimagerror::trace::MapErrTrace;
use libimagerror::exit::ExitUnwrap;
use libimagstore::storeid::StoreId;
-use retrieve::print_entry;
+use crate::retrieve::print_entry;
pub fn get(rt: &Runtime) {
let scmd = rt.cli().subcommand_matches("get").unwrap();