3 stable releases
new 1.1.0 | Oct 28, 2024 |
---|---|
1.0.1 | Oct 9, 2024 |
1.0.0 | Sep 17, 2024 |
#1068 in Parser implementations
284 downloads per month
8KB
82 lines
xuid
XUID library for Rust
What even is an XUID?
XUIDs, or Xbox User IDs, are unique 64-bit unsigned integers assigned to Xbox Live accounts to identify users across Microsoft's gaming platforms. These IDs are used in various services, such as Xbox Live multiplayer games, cloud storage, and profile management, to reference a user without relying on a username, which can change over time. XUIDs ensure that every user is uniquely identified and remain consistent even if a gamertag is updated.
They're widely used in games like Minecraft: Bedrock Edition, where XUIDs can link in-game players to their Xbox Live accounts, enabling cross-platform play and access to Xbox Live services.
Usage Example
fn main() {
let xuid = xuid::xuid!(1234567890);
println!("{}", xuid);
}
Dependencies
~170KB