pipeline status

raur

A thin rust wrapper over the AUR RPC Json interface. Documentation is a little sparse, refer to the ArchWiki RPC Docs for more info.

This crate tries to implment the whole RPC Json API not to assume use cases.

Usage

```Rust use raur::{search, SearchStrategy}

// Use search to search using keywords (multiple strategies available) let results = search("spotify", SearchStrategy::NameDescription)?;

// Use info to get info about a specific package name. let results = info(&["spotify"])?; ```