All Versions
5
Latest Version
Avg Release Cycle
-
Latest Release
-
Changelog History
Changelog History
-
v0.3.0 Changes
- ๐ 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());
-
v0.2.1 Changes
- The
PreFetchCallback
was not being called before fetching HEAD requests.
- The
-
v0.2.0 Changes
- Switch to using
Arc<Fn()>
callbacks instead of function pointers.
- Switch to using
-
v0.1.1 Changes
- โ Remove dependency on the failure crates
- โ Add the
content_type
field toUrlEntry::File
-
v0.1.0 Changes
- ๐ Initial release