radarcord-rs

Crates.ioradarcord-rs
lib.rsradarcord-rs
version0.0.2
created_at2025-09-09 01:17:04.664418+00
updated_at2025-09-09 04:15:58.050329+00
descriptionAn API wrapper for the Radarcord bot list
homepage
repositoryhttps://codeberg.org/Yoshiboi18303/Radarcord-rs
max_upload_size
id1830112
size116,993
Yoshiboi18303 (Yoshiboi18303)

documentation

README

Radarcord-rs

An API wrapper for the Radarcord bot list!

Features

  • (almost) Full coverage of the Radarcord API (sending stats, commands, getting reviews, etc.)!
  • Vote webhook support

MSRV

The MSRV (Minimum Supported Rust Version) for this crate is around 2024 edition, so 1.85.1. Anything lower than that can cause problems. Trust me, I've checked.

Installation

You can add this to your project in one of two ways.

Using cargo add

Normal (no webhook support)

cargo add radarcord-rs

With Webhook Support

cargo add radarcord-rs --features webhooks

Manually (Cargo.toml)

[dependencies]
# Normal, no webhook support.
radarcord-rs = "0.0.1"

# With webhook support.
radarcord-rs = { version = "0.0.1", features = ["webhooks"] }

Examples

We have two examples:

  • One showing off part of the client
  • And one showing off the WebhookClient!

Clone the repository and then run:

cargo run --example client

OR, for the WebhookClient:

cargo run --example webhooks --features webhooks

License

This project is dual licensed under the MIT OR Apache 2.0 licenses. Take your pick of which one you like better.


And... that's about all I have to say! Have fun with Radarcord-rs!

Commit count: 0

cargo fmt