Add missing imports after rebase

This commit is contained in:
Matthias Beyer 2016-01-05 16:46:13 +01:00
parent 35487ec9a6
commit 270466ab3a

View file

@ -1,6 +1,8 @@
use std::fmt::{Debug, Formatter}; use std::fmt::{Debug, Formatter};
use std::fmt::Result as FMTResult; use std::fmt::Result as FMTResult;
use std::ops::Deref; use std::ops::Deref;
use std::rc::Rc;
use std::cell::RefCell;
use clap::ArgMatches; use clap::ArgMatches;
@ -8,6 +10,7 @@ mod header;
use module::Module; use module::Module;
use runtime::Runtime; use runtime::Runtime;
use storage::file::File;
use storage::parser::Parser; use storage::parser::Parser;
use storage::json::parser::JsonHeaderParser; use storage::json::parser::JsonHeaderParser;
use module::helpers::cli::create_tag_filter; use module::helpers::cli::create_tag_filter;