| Crates.io | rust-anilist |
| lib.rs | rust-anilist |
| version | 0.1.5 |
| created_at | 2025-01-03 22:47:32.155753+00 |
| updated_at | 2025-01-12 04:02:06.947488+00 |
| description | A Rust wrapper for the Anilist API, providing asynchronous methods to interact with various entities like Anime, Manga, User, Person, and Character. |
| homepage | https://github.com/AmanoTeam/rust-anilist |
| repository | https://github.com/AmanoTeam/rust-anilist |
| max_upload_size | |
| id | 1503012 |
| size | 161,463 |
Just an Anilist API wrapper made in Rust.
It's working, just the basics, but it already works.
Add the following to your Cargo.toml:
[dependencies]
rust-anilist = "*"
Here's a basic example of how to use the library:
use rust_anilist::Client;
#[tokio::main]
async fn main() {
let client = Client::with_token("your_api_key");
let anime = client.get_anime(1).await.unwrap();
println!("{:?}", anime);
}
The library is fully documented. You can find the documentation here.
Copyright © 2022-2025 AndrielFR
Licensed under the Expat/MIT license. This project is also REUSE compliant. See individual files for more copyright information.