summaryrefslogtreecommitdiffstats
path: root/librepology/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'librepology/src/lib.rs')
-rw-r--r--librepology/src/lib.rs8
1 files changed, 8 insertions, 0 deletions
diff --git a/librepology/src/lib.rs b/librepology/src/lib.rs
index d7192f2..76992fd 100644
--- a/librepology/src/lib.rs
+++ b/librepology/src/lib.rs
@@ -5,8 +5,16 @@ extern crate url;
extern crate url_serde;
extern crate curl;
+#[cfg(feature = "packagefilters")]
+extern crate filters;
+#[cfg(feature = "packagefilters")]
+#[macro_use] extern crate derive_new;
+
#[macro_use] extern crate serde_derive;
#[macro_use] extern crate log;
#[macro_use] extern crate derive_more;
pub mod v1;
+
+#[cfg(feature = "packagefilters")]
+pub mod packagefilters;