Examples
Phase 0 hello
Confirm the original workspace skeleton and umbrella prelude resolve successfully.
This minimal historical artifact imports the umbrella crate's prelude and prints the package version. It exists to prove that the Phase 0 workspace skeleton builds, before any crawling behavior is involved.
This is a phase/internals artifact below the higher-level HttpCrawler, HtmlCrawler, and BrowserCrawler APIs.
cargo run -p millipede --example phase0_hello//! Phase 0 placeholder example.
//!
//! Proves the workspace skeleton builds and the umbrella crate's prelude
//! resolves. Replaced by real crawling examples from Phase 1 onward.
fn main() {
// Prove the umbrella crate and its (currently empty) prelude resolve.
#[allow(unused_imports)]
use millipede::prelude;
println!(
"millipede {} — workspace skeleton is alive (Phase 0)",
env!("CARGO_PKG_VERSION")
);
}