crawlberg 1.0.5

High-performance web crawling engine
Documentation
1
2
3
4
5
6
7
8
9
10
//! Smoke test that the public builder composes with a public strategy + a public default impl.
//! Compiled by `cargo build --example custom_builder -p crawlberg` to catch visibility regressions
//! from an external-consumer vantage point.

use crawlberg::{BfsStrategy, CrawlEngine, NoopStore};

fn main() -> Result<(), Box<dyn std::error::Error>> {
    let _engine = CrawlEngine::builder().strategy(BfsStrategy).store(NoopStore).build()?;
    Ok(())
}