8 releases (stable)

1.2.0 Mar 30, 2025
1.1.4 Oct 17, 2024
1.1.3 Sep 26, 2024
1.0.1 Aug 17, 2024
0.1.1 Aug 15, 2024

#394 in Database interfaces

Download history 11/week @ 2025-02-12 4/week @ 2025-02-26 124/week @ 2025-03-26 17/week @ 2025-04-02 3/week @ 2025-04-09 4/week @ 2025-04-16

148 downloads per month

MIT license

410KB
10K SLoC

A Rust wrapper for Artifacts, an API-based sandbox MMO.

Generated by openapi-generator based on version 4.1 of the public OpenAPI spec.


archaeologist

A Rust wrapper for Artifacts, an API-based sandbox MMO.

Generated by openapi-generator.

Example Usage

use archaeologist::{
    apis::{configuration::Configuration, my_account_api},
    models::BankResponseSchema,
};

#[tokio::main]
async fn main() {
    let mut config = Configuration::new();
    config.bearer_access_token = Some("YOUR_TOKEN".to_owned());

    match my_account_api::get_bank_details(&config).await {
        Ok(BankResponseSchema { data }) => println!("{:?}", data),
        Err(err) => panic!("{}", err),
    }
}

Dependencies

~8–20MB
~273K SLoC