qauth

Crates.ioqauth
lib.rsqauth
version0.1.6
sourcesrc
created_at2021-07-13 23:00:49.838987
updated_at2022-02-13 00:23:39.847435
descriptionClient library for the QuartzAuth API
homepagehttps://auth.quartzinc.space
repositoryhttps://github.com/Zert3x/QA-Rust
max_upload_size
id422492
size23,835
(Zert3x)

documentation

https://quartz.wiki

README

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"));
}
Commit count: 21

cargo fmt