7 releases (stable)

1.1.4 Oct 17, 2024
1.1.3 Sep 26, 2024
1.1.2 Sep 7, 2024
1.0.1 Aug 17, 2024
0.1.1 Aug 15, 2024

#481 in Web programming

Download history 285/week @ 2024-08-11 137/week @ 2024-08-18 5/week @ 2024-08-25 140/week @ 2024-09-01 161/week @ 2024-09-08 4/week @ 2024-09-15 189/week @ 2024-09-22 18/week @ 2024-09-29 8/week @ 2024-10-06 162/week @ 2024-10-13 16/week @ 2024-10-20

210 downloads per month

MIT license

305KB
7.5K SLoC

Rust 6.5K SLoC // 0.0% comments Mustache 768 SLoC // 0.0% comments TypeScript 37 SLoC

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),
    }
}

lib.rs:

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

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

Dependencies

~7–18MB
~269K SLoC