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:

toml [dependencies] ddragon = "<version>"

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

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

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

Note that if you are providing your own client (via AsyncClientBuilder::new().agent()) you can use either async feature set.

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

MSRV

Currently, this crate support Rust >= 1.65.0.

Note: musl builds for async users

A dependency of this crate is reflink, which does not have a version published to crates.io compatible with musl. If you want to build with one of the async features, you will need the following patch in your Cargo.toml:

toml [patch.crates-io] reflink = { git = "https://github.com/nicokoch/reflink", rev = "e8d93b46" }