browsing 0.1.4

Lightweight MCP/API for browser automation: navigate, get content (text), screenshot. Parallelism via RwLock.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Core trait abstractions for browsing-rs
//!
//! This module defines the key traits that enable polymorphism and testability
//! throughout the browsing codebase.

mod browser_client;
mod dom_processor;

pub use browser_client::BrowserClient;
pub use dom_processor::DOMProcessor;