crw-cli 0.18.3

crw — Unified CLI for web scraping, crawling, search, and serving
1
2
3
4
5
6
7
8
9
10
11
12
//! CLI subcommand implementations.
//!
//! Each subcommand is a separate module with a `run()` async function.

pub mod browse;
pub mod crawl;
pub mod map;
pub mod mcp;
pub mod scrape;
pub mod search;
pub mod serve;
pub mod setup;