#id #steam-id #steam #parser

steamid-ng

An easy-to-use steamid type with functions to parse and render steam2 and steam3 IDs

9 releases (1 stable)

1.0.0 Oct 4, 2020
0.3.4 Apr 15, 2020
0.3.3 Jul 13, 2019
0.3.1 Nov 24, 2017
0.1.1 Sep 26, 2017

#1815 in Parser implementations

Download history 186/week @ 2024-01-12 127/week @ 2024-01-19 169/week @ 2024-01-26 86/week @ 2024-02-02 149/week @ 2024-02-09 161/week @ 2024-02-16 126/week @ 2024-02-23 121/week @ 2024-03-01 162/week @ 2024-03-08 143/week @ 2024-03-15 131/week @ 2024-03-22 197/week @ 2024-03-29 132/week @ 2024-04-05 138/week @ 2024-04-12 142/week @ 2024-04-19 211/week @ 2024-04-26

655 downloads per month
Used in 7 crates

MIT license

15KB
300 lines

steamid-ng crates.io MIT License Docs.rs Travis CI

An easy-to-use steamid type with functions to parse and render steam2 and steam3 IDs. All credit for the initial PHP implementation goes to xPaw; I merely ported it to rust.


lib.rs:

SteamID

The steamid-ng crate provides an easy-to-use SteamID type with functions to parse and render steam2 and steam3 IDs. It also supports serializing and deserializing via serde.

Examples

let x = SteamID::from(76561197960287930);
let y = SteamID::from_steam3("[U:1:22202]").unwrap();
let z = SteamID::from_steam2("STEAM_1:0:11101").unwrap();
assert_eq!(x, y);
assert_eq!(y, z);

assert_eq!(u64::from(z), 76561197960287930);
assert_eq!(y.steam2(), "STEAM_1:0:11101");
assert_eq!(x.steam3(), "[U:1:22202]");

assert_eq!(x.account_id(), 22202);
assert_eq!(x.instance(), Instance::Desktop);
assert_eq!(x.account_type(), AccountType::Individual);
assert_eq!(x.universe(), Universe::Public);
// the SteamID type also has `set_{account_id, instance, account_type, universe}` methods,
// which work as you would expect.

Keep in mind that the SteamID type does no validation.

Dependencies

~3–5MB
~89K SLoC