1//! This crate is intentionally left empty. 2//! 3//! We have an empty library depending on `log` here so we can run integration tests 4//! on older compilers without depending on the unstable `no-dev-deps` flag. 5 6#![allow(dead_code)] 7 8#[cfg(test)] 9#[macro_use] 10extern crate log; 11 12#[cfg(test)] 13#[path = "../filters.rs"] 14mod filters; 15 16#[cfg(test)] 17#[path = "../macros.rs"] 18mod macros; 19