gar-crawl-0.1.13 has been yanked.
gar-crawl
A high level HTML crawler with a concise builder.
The goal of this crate is to accomplish crawling and scraping tasks with minimal boilerplate. Default propagators are provided or you can make your own, and you can modify the Reqwest client used before building a crawler.
examples
This example will crawl from https://example.org to a depth of 3, printing all links found
builder
.add_default_propagators
.user_agent
.add_handler
.depth
.build?
.crawl
.await?;
See examples/ for more examples