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

#206 in Games

Download history 77/week @ 2026-01-08 148/week @ 2026-01-15 57/week @ 2026-01-22 148/week @ 2026-01-29 377/week @ 2026-02-05 217/week @ 2026-02-12 280/week @ 2026-02-19 360/week @ 2026-02-26 924/week @ 2026-03-05 1212/week @ 2026-03-12 952/week @ 2026-03-19 1667/week @ 2026-03-26 1847/week @ 2026-04-02 487/week @ 2026-04-09 1620/week @ 2026-04-16 632/week @ 2026-04-23

5,056 downloads per month
Used in 7 crates (5 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.8–7MB
~130K SLoC