| Crates.io | warframe |
| lib.rs | warframe |
| version | 8.0.1 |
| created_at | 2023-11-16 22:34:56.07506+00 |
| updated_at | 2025-09-21 08:41:21.866387+00 |
| description | An async crate to wrap Warframe's Worldstate API. |
| homepage | https://docs.rs/warframe |
| repository | https://github.com/Mettwasser/warframe.rs |
| max_upload_size | |
| id | 1038226 |
| size | 4,306,954 |
An async crate to wrap the Worldstate API and the warframe.market API.
Use this crate if you want to make a Warframe-related rust project that is async.
To install, simply run cargo add warframe.
Note that the MSRV of this project is 1.85.
use warframe::worldstate::{Client, Error, queryable::Cetus, Opposite, TimedEvent};
#[tokio::main]
async fn main() -> Result<(), Error> {
let client = Client::default();
let cetus = client.fetch::<Cetus>().await?;
println!(
"It is currently {} on cetus. It will be {} in {}",
cetus.state,
cetus.state.opposite(),
cetus.eta()
);
Ok(())
}
See CONTRIBUTING
Commit messages are linting in the PR