1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//! # alpm-utils
//!
//! A utility library that provides some common functionality an alpm user may requre.

#![warn(missing_docs)]

#[cfg(feature = "conf")]
mod conf;
#[cfg(feature = "alpm")]
mod db;
/// Utils for dependency checking.
#[cfg(feature = "alpm")]
pub mod depends;
mod target;

#[cfg(feature = "conf")]
pub use crate::conf::*;
#[cfg(feature = "alpm")]
pub use crate::db::*;
pub use crate::target::*;