6 releases

0.1.5 Mar 4, 2025
0.1.4 Oct 29, 2023
0.1.3 Aug 6, 2023
0.1.2 Aug 19, 2022
0.1.1 Jun 18, 2022

#226 in Games

Download history 61/week @ 2024-12-02 61/week @ 2024-12-09 47/week @ 2024-12-16 66/week @ 2024-12-23 16/week @ 2024-12-30 43/week @ 2025-01-06 97/week @ 2025-01-13 119/week @ 2025-01-20 167/week @ 2025-01-27 86/week @ 2025-02-03 109/week @ 2025-02-10 41/week @ 2025-02-17 92/week @ 2025-02-24 168/week @ 2025-03-03 43/week @ 2025-03-10 22/week @ 2025-03-17

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

MIT license

18KB
372 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
~125K SLoC