1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod api;
mod apply_rules;
mod extract_text;
mod gather_css;
mod rewrite_css;
mod utils;
mod webroot;
mod webroot_info;

mod consts {
    pub const CACHE_SIZE: u64 = 128;
}

pub use api::*;
pub use rewrite_css::RewriteContext;
pub use webroot_info::{FontStackInfo, TextSample, WebrootInfo};