Skip to content
This repository was archived by the owner on Jun 7, 2026. It is now read-only.

Latest commit

 

History

History
26 lines (18 loc) · 346 Bytes

File metadata and controls

26 lines (18 loc) · 346 Bytes

Rookie Rust Docs

Install

cargo add rookie

Basic Usage

use rookie;

fn main() {
    let cookies = rookie::chrome(None).unwrap();
    println!("{cookies:?}");
}

Logging

Logging level can be controlled by changing RUST_LOG ENV variable

RUST_LOG=trace cargo run