4 releases

0.1.6 Feb 13, 2022
0.1.5 Jan 16, 2022
0.1.4 Sep 30, 2021
0.1.3 Aug 19, 2021
0.1.2 Jul 13, 2021

#44 in #bug

Custom license

23KB
566 lines

QA-RustClient

This is the Rust implementation of the client for the QuartzAuth API.

Note, this likely has a lot of non-idiomatic code, as this was originally written when I had begun learning rust. This will change in the future when I have time.

Pull requests are welcome for any bugs you may find!

If you have any questions, please join our discord server

Example

use qauth::client::Client;

fn main() {
    let client = Client::new(
        String::from("ProgramKey"),
        String::from("VariableKey"),
        String::from("0.0.1"),
    );
    let client = client.unwrap();

    let resp = client.login(String::from("username"), String::from("password"));
}

Dependencies

~6–38MB
~574K SLoC