This project is a Rust library for interacting with the beatsaver.com api.
bash
cargo install beatsaver-rs
API has not been stabalized yet.
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