url-crawler v0.3.0 Release Notes

    • 👍 Allow scraping from multiple URLs in the same crawler.
    // This
    fn new(url: String) -> Self {}
    
    // Now becomes
    fn new(urls: impl Into<CrawlerSource>) -> Self {}
    
    // Which enables
    Crawler::new(vec!["url1".into(), "url2".into()]);
    Crawler::new("url".to_owned());