//! Minimal CDP (Chrome DevTools Protocol) Client
//!
//! A hand-crafted CDP implementation with built-in stealth filtering.
//! Only ~20 CDP commands are implemented - just what's needed for browser automation.
//!
//! ## Stealth Features
//!
//! - Blocks detectable commands like `Runtime.enable` (toggle via `Transport::connect_with_options`)
//! - Warns on risky commands like `Emulation.setUserAgentOverride`
//! - Uses a single WebSocket transport over TCP
pub use ;
pub use ;
pub use Transport;
pub use *;