raur_ext/
lib.rs

1//! # raur-ext
2//!
3//! raur-ext is an extension to the raur AUR RPC library. It provides request splitting
4//! (requests are limited to URI of 4443 bytes maximum length). And a way to cache
5//! packages into a hash set and query them by pkgname.
6
7#![warn(missing_docs)]
8mod cache;
9mod raur;
10
11pub use crate::cache::*;
12pub use crate::raur::*;