aur-rpc 0.2.0

An async wrapper for aur RPC calls
Documentation
# aur-rpc [![]https://img.shields.io/crates/v/aur-rpc]https://crates.io/crates/aur-rpc [![]https://img.shields.io/docsrs/aur-rpc]https://docs.rs/aur-rpc

This crate is an async wrapper for calls to the Arch Linx User Repository.

## Example

```rust
#[tokio::main]
pub async fn main() {
   let packages = aur_rpc::search("yay").await.unwrap();

   for package in packages {
       println!("{} - {}", package.name, package.maintainer);
   }
   
   let mut infos = aur_rpc::info(["mediarepo"]).await.unwrap();
   let info = infos.pop().expect("package not found");
   println!("{}", info.metadata.popularity);
}
```

## License

Apache 2.0