5 releases

0.1.4 Oct 29, 2023
0.1.3 Aug 6, 2023
0.1.2 Aug 19, 2022
0.1.1 Jun 18, 2022
0.1.0 Jun 18, 2022

#232 in Games

Download history 125/week @ 2024-07-22 80/week @ 2024-07-29 233/week @ 2024-08-05 63/week @ 2024-08-12 175/week @ 2024-08-19 94/week @ 2024-08-26 49/week @ 2024-09-02 52/week @ 2024-09-09 100/week @ 2024-09-16 116/week @ 2024-09-23 78/week @ 2024-09-30 93/week @ 2024-10-07 179/week @ 2024-10-14 114/week @ 2024-10-21 98/week @ 2024-10-28 159/week @ 2024-11-04

557 downloads per month
Used in 5 crates (3 directly)

MIT license

18KB
363 lines

rbx_cookie

Finds the .ROBLOSECURITY cookie from either a ROBLOSECURITY environment variable or the authenticated local Roblox Studio installation (works for Windows and MacOS). Available as both a library and CLI.

CLI

Install with cargo install rbx_cookie.

rbx_cookie --help

Library

Disable default features to exclude the CLI dependencies with cargo add rbx_cookie --no-default-features, or use the default-features = false configuration:

# Cargo.toml
[dependencies]
rbx_cookie = { version = "<version>", default-features = false }
// Returns the cookie as a formatted header ready to add to a request
let cookie = rbx_cookie::get();

// Returns the raw cookie value
let cookie = rbx_cookie::get_value();

Dependencies

~2–11MB
~127K SLoC