headless_browser 0.1.24

A scalable application for managing headless Chrome instances with proxy and server capabilities.
1
2
3
4
5
6
7
8
9
10
11
#[cfg(all(not(target_env = "msvc"), feature = "jemalloc"))]
use tikv_jemallocator::Jemalloc;
#[cfg(all(not(target_env = "msvc"), feature = "jemalloc"))]
#[global_allocator]
static GLOBAL: Jemalloc = Jemalloc;

#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
    tracing_subscriber::fmt::init();
    headless_browser_lib::run_main().await
}