cloudscraper_rs/external_deps/
mod.rs

1//! Integrations that rely on third-party services.
2//!
3//! This module groups adapters for captcha providers, JavaScript interpreters,
4//! and other external dependencies that bridge the core solver with the
5//! outside world.
6
7pub mod captcha;
8pub mod interpreters;
9
10pub use interpreters::BoaJavascriptInterpreter;