monolith/src/lib.rs

15 lines
208 B
Rust
Raw Normal View History

2019-08-23 20:24:45 +02:00
#[macro_use]
extern crate lazy_static;
extern crate html5ever;
extern crate regex;
extern crate reqwest;
extern crate url;
2019-08-23 05:17:15 +02:00
pub mod html;
pub mod http;
2019-09-29 23:15:49 +02:00
pub mod js;
2019-08-23 05:17:15 +02:00
pub mod utils;
2019-09-29 23:15:49 +02:00
#[cfg(test)]
pub mod tests;