| Crates.io | briteverify-rs |
| lib.rs | briteverify-rs |
| version | 0.2.0 |
| created_at | 2023-03-29 17:16:05.123272+00 |
| updated_at | 2023-10-30 18:53:04.025242+00 |
| description | Rust client library for the BriteVerify API Suite |
| homepage | https://github.com/the-wondersmith/briteverify-rs |
| repository | https://github.com/the-wondersmith/briteverify-rs |
| max_upload_size | |
| id | 824219 |
| size | 654,305 |
briteverify-rs provides a type-safe, ergonomic client for
the BriteVerify API based on
the popular reqwest
HTTP client library.
It aims to provide a simple and convenient way to interact with the BriteVerify API from Rust. It tries to be easy to use, with a focus on allowing devs to quickly get up and running with the API.
let response: AccountCreditBalance = BriteVerifyClient::new("YOUR API KEY HERE")?
.get_account_balance()
.await?;
println!("{response:#?}");
briteverify-rs provides:
briteverify-rs makes a best-effort attempt to stay current with
the BriteVerify API, but is ultimately maintained independently.
Best-effort means that no guarantees are made, but PRs are always
accepted.briteverify-rs currently implements support for the v3 bulk
endpoints, with no plans to add support for legacy or deprecated
endpoints (namely the v2 endpoints in this case).