libimagentryfilter: Add filters crate to lib.rs

Signed-off-by: Gavin Thomas Claugus <gclaugus@gmail.com>
This commit is contained in:
Gavin Thomas Claugus 2016-08-13 12:10:43 -04:00
parent 20c4358a83
commit fda1c94bee

View file

@ -15,10 +15,11 @@
#[macro_use] extern crate log; #[macro_use] extern crate log;
extern crate filters;
extern crate itertools; extern crate itertools;
extern crate regex; extern crate regex;
extern crate toml;
extern crate semver; extern crate semver;
extern crate toml;
extern crate libimagstore; extern crate libimagstore;
extern crate libimagentrytag; extern crate libimagentrytag;
@ -28,7 +29,6 @@ extern crate libimagentrytag;
pub mod cli; pub mod cli;
pub mod builtin; pub mod builtin;
pub mod filter;
pub mod ops; pub mod ops;
// extended functionality of the crate // extended functionality of the crate