1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
#![cfg_attr(feature="clippy", feature(plugin))]
#![cfg_attr(feature="clippy", plugin(clippy))]

#[cfg(test)]
mod tests;

mod error;
mod harsh;

pub use error::{Error, Result};
pub use harsh::{Harsh, HarshBuilder};