#![doc(html_logo_url = "http://libearth.earthreader.org/en/0.2.0/_static/libearth.svg",
html_favicon_url = "http://earthreader.org/favicon.ico",
html_root_url = "http://earthreader.org/rust-earth/")]
#![cfg_attr(html_sanitizer, plugin(string_cache_plugin))]
extern crate chrono;
extern crate regex;
extern crate tempdir;
extern crate url;
extern crate xml;
#[cfg(html_sanitizer)] extern crate html5ever;
#[cfg(html_sanitizer)] extern crate string_cache;
pub mod macros;
pub mod test_utils;
pub mod codecs;
pub mod feed;
pub mod html;
pub mod mimetype;
pub mod parser;
pub mod repository;
pub mod sanitizer;
pub mod schema;
pub mod stage;
pub mod util;
pub mod workbench;