Add latest the library to your Cargo.tml
Cargo.toml:
toml
...
[dependencies]
e621-rs = "0.1.2"
tokio = { version = "1.0", features = ["full"] }
main.rs ``` rust use e621rs::e621client::Client; use e621_rs::requests::PostsListOptions;
async fn main() -> Result<(), Box
let res = client.post_list(
PostsListOptions {
limit: Some(32),
tags: Some(String::from("lucario")),
page: None
}
).await;
println!("{:?}", res);
Ok(())
} ```