ddragon

latest version health check status downloads of latest version latest docs

Rust library for accessing the latest League of Legends patch's ddragon data.

Usage

```rust use ddragon::{cache_middleware::CacheMiddleware, Client, ClientBuilder, ClientError};

fn main() -> Result<(), ClientError> { let client = Client::new("/path/to/your/cache/dir")?;

// If you want to use an existing agent
let my_agent = ureq::AgentBuilder::new()
    .middleware(CacheMiddleware::new("/path/to/your/cache/dir"))
    .build();
let client = ClientBuilder::new().agent(my_agent).build()?;

// See available options on the client and in the models folder.
let champions = client.champions()?;
let runes = client.runes()?;
let tft_items = client.tft_items()?;

Ok(())

} ```

Features

The following crate features are available:

To use the library with just the synchronous version, it should be as simple as adding any other dependency:

toml [dependencies] ddragon = "<version>"

If you would also like to have the image fetching support, use:

toml [dependencies] ddragon = { version = "<version>", features = ["image"] }

If you want the asynchronous client only, you probably don't want to pull in the dependencies related to the synchronous code, so you can do this:

toml [dependencies] ddragon = { version = "<version>", default-features = false, features = ["async"] }

If you only want the DDragon models (none of the client code), you can use

toml [dependencies] ddragon = { version = "<version>", default-features = false }