#![feature(
async_closure,
iterator_try_collect,
iterator_try_reduce,
)]
#[macro_use]
mod lazy_regex;
#[macro_use]
pub mod util;
pub mod dump;
pub mod http;
pub mod slug;
mod temp_dir;
mod user_regex;
pub mod wikitext;
pub use temp_dir::TempDir;
pub use user_regex::UserRegex;
pub type Error = anyhow::Error;
pub type Result<T> = std::result::Result<T, Error>;