mocra-proxy 0.4.1

Configuration-driven proxy pool / manager for the mocra crawler framework (zero-State, standalone).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! mocra-proxy: a configuration-driven proxy pool / manager (extracted from the main mocra
//! crate; State-free and usable standalone).
//!
//! - [`ProxyManager`] / [`ProxyPool`]: a multi-provider proxy pool with tunnels, health checks,
//!   rotation, and expiry reclamation.
//! - [`ProxyConfig`]: TOML configuration loading (`ProxyConfig::load_from_toml`).
//! - A standalone [`ProxyError`]; the host crate folds it into its own error hierarchy via `From`.

pub mod error;
pub mod proxy_impl;
pub mod proxy_manager;
pub mod proxy_pool;

pub use error::{BoxError, ProxyError, Result};
pub use proxy_manager::ProxyManager;
pub use proxy_pool::*;