15 stable releases (3 major)

3.4.0 Jan 27, 2024
3.3.0 Dec 27, 2023
3.2.1 Aug 21, 2023
3.2.0 May 27, 2023
0.1.1 Nov 29, 2021

#29 in Caching

Download history 1/week @ 2023-12-04 13/week @ 2023-12-11 6/week @ 2023-12-18 8/week @ 2023-12-25 5/week @ 2024-01-22 1/week @ 2024-02-19 45/week @ 2024-02-26 141/week @ 2024-03-04 56/week @ 2024-03-11

243 downloads per month

MIT license

130KB
1.5K SLoC

Rustemon Latest Version

This library is a wrapper for the awesome PokeApi, which provides all the informations you need about Pokémons !

Fully written in Rust, this library covers the whole PokeApi REST api v2.

How to import it ?

Adds the following in the dependencies of your Cargo.toml :

rustemon = "3.4.0" 

How to use it ?

As you noticed in the documentation of PokeApi, every endpoints and models are declared in groups.

The library kept this group oriented architecture !

Features

This crate provides two features to enable different cache mechanisms :

  • filesystem-cache -> A configurable cache stored in files.
  • in-memory-cache -> A configurable in-memory cache.

filesystem-cache is enabled by default. Be careful, those features are mutually exclusive !! If you want to use the in-memory-cache feature, you can proceed as follow:

[dependencies]
rustemon = { version = "*", default-features = false, features = ["in-memory-cache"] } 
Models

All the models are located into the following module :

rustemon::model

For example, if you want the type Pokemon located in the group pokemon, it is located here :

rustemon::model::pokemon::Pokemon
Endpoints

The endpoints follow the same naming rule, for example, if you want to call the evolution chain endpoint from the evolution group :

rustemon::evolution::evolution_chain

For each endpoints, 4 functions are defined :

  • get_page : without parameters, calls the endpoint without any informations to retrieve the first page of the paginated response for the endpoint, as defined here,
  • get_page_with_param : allows you to modify the parameters for the paginated query,
  • get_by_id : calls the endpoint using the id of the targeted resource,
  • get_by_name : calls the endpoint using the name of the targeted resource.

The endpoints are all async ! Which means you NEED to add a async runtime (such as tokio for example), in order for the library to work.

Caching

All calls to the API are cached by a middleware attached to the RustemonClient you need to instanciate in order to make calls to the PokeAPI.

Examples

Examples and use cases are available in the examples folder. For instance, you can run the async_follow example using

cargo run --example async_follow

License

The license of the library can be found here.

Contribution

If you find any bug or improvement that you find valuable, please fill an issue right there -> project issues

Dependencies

~5–43MB
~675K SLoC