kreuzcrawl-browser 0.3.0

Internal headless-browser fallback used by the kreuzcrawl crawler. Not intended for direct use.
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod client;
pub mod cookies;
pub mod interceptor;
pub mod robots;
pub mod ssrf;
#[cfg(feature = "stealth")]
pub mod wreq_client;

pub use client::{HttpClient, NetError, Response};
pub use cookies::CookieJar;
pub use robots::RobotsCache;
#[cfg(feature = "stealth")]
pub use wreq_client::{STEALTH_USER_AGENT, StealthHttpClient};