azalea-auth

Crates.ioazalea-auth
lib.rsazalea-auth
version0.10.1
sourcesrc
created_at2022-08-30 02:25:52.651101
updated_at2024-04-24 22:58:46.33843
descriptionA port of Mojang's Authlib and launcher authentication.
homepage
repositoryhttps://github.com/azalea-rs/azalea/tree/main/azalea-auth
max_upload_size
id654884
size86,527
mat (mat-1)

documentation

README

Azalea Auth

A port of Mojang's Authlib and launcher authentication.

Examples

use std::path::PathBuf;

#[tokio::main]
async fn main() {
    let cache_file = PathBuf::from("example_cache.json");

    let auth_result = azalea_auth::auth(
        "example@example.com",
        azalea_auth::AuthOpts {
            cache_file: Some(cache_file),
            ..Default::default()
        },
    )
    .await
    .unwrap();
    println!("{auth_result:?}");
}

Thanks to wiki.vg contributors, Overhash, and prismarine-auth contributors.

Commit count: 0

cargo fmt