//! Web browsing plugin for swink-agent.
//!
//! Provides tools for fetching web pages, searching the web, capturing screenshots,
//! and extracting structured content. Includes safety policies for domain filtering,
//! rate limiting, and content sanitization.
/// Ensure a process-wide default rustls crypto provider is installed.
///
/// The workspace builds reqwest with `rustls-no-provider` (#1110), so a
/// `reqwest::Client` cannot be constructed until a process default
/// [`rustls::crypto::CryptoProvider`] exists. Installs ring; idempotent —
/// an already-installed provider (e.g. a host's aws-lc-rs for FIPS) wins.
pub
pub use ;
pub use FetchedContent;
pub use ;
// playwright::{ExtractedElement, ExtractionPreset, Viewport} are deliberately
// NOT re-exported: no public function takes or returns them, so exporting
// them was dead public surface (a semver liability with zero utility). The
// types stay in the private `playwright` module for future wiring; re-export
// them only once a public API actually accepts or produces them.
pub use ;
pub use ;