beatsaver-rs

Crates.io Documentation License GitHub issues Build

This project is a Rust library for interacting with the beatsaver.com api.

Installation

bash cargo install beatsaver-rs

Usage

API has not been stabalized yet.

Backends

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).

Testing

When testing, make sure to enable all features to ensure all backends are tested properly:

bash cargo test --all-features

License

MIT