rust_anilist/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
// SPDX-License-Identifier: MIT
// Copyright (c) 2022-2025 Andriel Ferreira <https://github.com/AndrielFR>

//! This crate provides a Rust library for interacting with the AniList API.

#![deny(missing_docs)]

mod client;
mod error;
pub mod models;

pub use client::Client;
pub use error::{Error, Result};