crw-core 0.13.4

Core types, config, and error handling for the CRW web scraper
Documentation
//! Core types, configuration, and error handling for the CRW web scraper.
//!
//! This crate provides the foundational building blocks shared across all CRW crates:
//!
//! - [`config`] — Layered TOML configuration with environment variable overrides
//! - [`error`] — Unified error types ([`CrwError`]) and result alias ([`CrwResult`])
//! - [`types`] — Shared data structures (`ScrapeData`, `FetchResult`, `OutputFormat`, etc.)
//! - [`url_safety`] — SSRF protection (blocks private IPs, cloud metadata, non-HTTP schemes)
//!
//! # Example
//!
//! ```rust
//! use crw_core::{AppConfig, CrwError, CrwResult};
//!
//! let config = AppConfig::load().unwrap();
//! assert!(config.server.port > 0);
//! ```

pub mod config;
pub mod deadline;
pub mod error;
pub mod mcp;
pub mod metrics;
pub mod types;
pub mod url_safety;

pub use config::AppConfig;
pub use deadline::Deadline;
pub use error::{CrwError, CrwResult};