From fda1c94beec40f25eff284b1038b006ff8bdd67a Mon Sep 17 00:00:00 2001 From: Gavin Thomas Claugus Date: Sat, 13 Aug 2016 12:10:43 -0400 Subject: [PATCH] libimagentryfilter: Add filters crate to lib.rs Signed-off-by: Gavin Thomas Claugus --- libimagentryfilter/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libimagentryfilter/src/lib.rs b/libimagentryfilter/src/lib.rs index e76d3a32..edcd8120 100644 --- a/libimagentryfilter/src/lib.rs +++ b/libimagentryfilter/src/lib.rs @@ -15,10 +15,11 @@ #[macro_use] extern crate log; +extern crate filters; extern crate itertools; extern crate regex; -extern crate toml; extern crate semver; +extern crate toml; extern crate libimagstore; extern crate libimagentrytag; @@ -28,7 +29,6 @@ extern crate libimagentrytag; pub mod cli; pub mod builtin; -pub mod filter; pub mod ops; // extended functionality of the crate