This project is a Rust library for interacting with the beatsaver.com api.
Add the following to your dependencies:
toml
beatsaver-rs = "0.1.2"
```rust use beatsaverrs::BeatSaverApi; use beatsaverrs::client::BeatSaver; use beatsaver_rs::map::Map; use bytes::Bytes; use std::convert::TryInto;
async fn main() { // Create a new client let client = BeatSaver::new();
// Get map with key `1`
let map: Map = client.map(&"1".try_into().unwrap()).await.unwrap();
println!("Map by key: {}", map.name);
// Get map with hash fda568fc27c20d21f8dc6f3709b49b5cc96723be
let map: Map = client.map(&"fda568fc27c20d21f8dc6f3709b49b5cc96723be".try_into().unwrap()).await.unwrap();
println!("Map by hash: {}", map.name);
// Download map
let map_download: Bytes = client.download((&map).into()).await.unwrap();
let map_download: Bytes = client.download(&"1".try_into().unwrap()).await.unwrap();
// save map somewhere
} ```
Currently, this crate supports three backends:
* reqwest
, which is asynchronous and runs on tokio
* surf
, which is asynchronous and runs on async-std
* ureq
, which is synchronous.
By default, reqwest
is used, but you can specify a particular backend by enabling the [backend]_backend
feature (for example, surf_backend
).
When testing, make sure to enable all features to ensure all backends are tested properly:
bash
cargo test --all-features