Rust library for accessing the latest League of Legends patch's ddragon data.
cacache-sync
ureq
agents (which can use the exposed cache middleware)http-cache-reqwest
rather than a custom middlewarereqwest
or reqwest-middleware
clientsimage
```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(())
} ```
The following crate features are available:
sync
(on by default) enables the synchronous client.
ddragon::client
and ddragon::cache_middleware
module.ddragon::Client
and ddragon::ClientBuilder
impls.cacache-sync
, url
, thiserror
, and ureq
with the json
feature enabled as dependencies.async
enables the asynchronous client.
ddragon::async_client
module.ddragon::AsyncClient
and ddragon::AsyncClientBuilder
impls.reqwest
with the json
feature, reqwest-middleware
and http-cache-reqwest
as dependencies.image
enables image fetching and caching.
image_of
and sprite_of
for any model which implements HasImage
.image
dependency.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 }