#api #async #wrap #change #tokio #worldstate

warframe

An async crate to wrap Warframe's Worldstate API

5 stable releases

4.0.0 Mar 5, 2024
3.1.1 Feb 10, 2024
1.1.3 Jan 28, 2024
1.0.4 Nov 16, 2023

#1313 in Web programming

44 downloads per month

MIT license

77KB
2K SLoC

warframe.rs

An async crate to wrap the Worldstate API.

Use this crate if you want to make a Warframe-related rust project that is async.

Please Note that a few things are subject to change without bumps in majors. Obsolete versions will be yanked asap.

Getting started

To install, simply run cargo add warframe.

Example

use warframe::worldstate::prelude::*;

#[tokio::main]
async fn main() -> Result<(), ApiError> {
    let client = Client::new();

    match client.fetch::<Cetus>().await {
        Ok(cetus) => {
            println!(
                "It is currently {} on cetus. It will be {} in {}",
                cetus.state,
                cetus.state.opposite(),
                cetus.eta()
            );
            Ok(())
        }
        Err(why) => Err(why),
    }
}

Contributing

Contributions are more than welcome. To contribute simply fork this repository and make a PR.

We use clippy for linting, and rustfmt for formatting. They are included as dev-dependencies in the Cargo.toml.

Dependencies

~7–22MB
~316K SLoC