Crate keyrunes_rust_sdk

Crate keyrunes_rust_sdk 

Source
Expand description

§Keyrunes Rust SDK

Rust library for integrating with the Keyrunes authentication and authorization service.

§Quick Start

use keyrunes_rust_sdk::KeyrunesClient;

let client = KeyrunesClient::new("https://keyrunes.example.com")?;
let user = client.register("john", "john@example.com", "password123", None).await?;
let token = client.login("john", "password123", None).await?;

§Modules

  • client - Main client for interacting with the Keyrunes API
  • error - Error types for the library
  • models - Data models for serialization/deserialization

Re-exports§

pub use client::KeyrunesClient;
pub use error::KeyrunesError;
pub use error::Result;
pub use models::*;

Modules§

client
Main client for interacting with the Keyrunes API
error
Error types for the Keyrunes library
models
Data models for the Keyrunes API