Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 346 Bytes

Rust.md

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