1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
extern crate reqwest;
extern crate robotparser;
extern crate scraper;
extern crate url;

/// Configuration structure for `Website`
pub mod configuration;
/// A page scraped
pub mod page;
/// A website to crawl
pub mod website;