18 releases

0.1.0-alpha.8 Aug 10, 2024
0.1.0-alpha.6 Aug 7, 2024
0.1.0-alpha.2 May 20, 2024
0.0.11 Oct 5, 2024
0.0.8 Apr 21, 2024

#1165 in Web programming

Download history 130/week @ 2024-07-29 339/week @ 2024-08-05 43/week @ 2024-08-12 7/week @ 2024-09-16 30/week @ 2024-09-23 166/week @ 2024-09-30 34/week @ 2024-10-07

237 downloads per month

MIT license

23KB
364 lines

TSAR Rust SDK

The official Rust SDK for TSAR. Rust is our primary focus, so this SDK will be the most maintained.

banner

Example Import

tsar-client = "0.1.0-alpha.7"

Example Usage

use tsar_client::Client;

// Get these credentials from: https://tsar.cc/app/*/settings
const CLIENT_KEY: &str = "MFkwEwY...GAr/ITBqA==";
const APP_ID: &str = "00000000-0000-0000-0000-000000000000";

fn main() {
    let options = ClientOptions {
        app_id: APP_ID.to_string(),
        client_key: CLIENT_KEY.to_string(),
        debug_print: true,
        dashboard_hostname: None,
    };

    // Initialize the client
    let client = Client::init(options).expect("Authentication failed.");

    // If client formed successfully, then the user is authorized
    // Access user info directly from the client

    println!("User ID: {}", client.subscription.user.id);

    // All subscriptions have "tiers" which can be set through key options. Default tier is 0.

    if client.subscription.tier >= 3 {
      println!("Woah you're special.");
    }

    // Perform a heart-beat check to validate that the user session is still valid
    if client.validate().is_err() {
      // Client session is no longer valid
    }
}

Want to contribute?

This SDK is open for community contribution! All pull requests will be reviewed by our team.

Need help?

Join our discord community if you have any questions. For other contact options, please visit here.

Dependencies

~7–22MB
~297K SLoC