playhard-launcher 0.1.1

Chrome launcher and profile management for the Playhard Rust browser automation stack.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Launch system Chrome for the Playhard stack.
//!
//! This crate owns executable discovery, Chrome process startup, temporary
//! profile lifecycle, and launch-time transport selection.

mod error;
mod launcher;
mod options;

pub use crate::error::LaunchError;
pub use crate::launcher::{
    parse_devtools_active_port, DevToolsActivePort, LaunchConnection, LaunchedChrome,
    LaunchedChromeParts, Launcher, ProfileDir,
};
pub use crate::options::{LaunchOptions, TransportMode};