alpm_utils/lib.rs
1//! # alpm-utils
2//!
3//! A utility library that provides some common functionality an alpm user may requre.
4
5#![warn(missing_docs)]
6#![allow(mismatched_lifetime_syntaxes)]
7
8#[cfg(feature = "conf")]
9mod conf;
10#[cfg(feature = "alpm")]
11mod db;
12/// Utils for dependency checking.
13#[cfg(feature = "alpm")]
14pub mod depends;
15mod target;
16
17#[cfg(feature = "conf")]
18pub use crate::conf::*;
19#[cfg(feature = "alpm")]
20pub use crate::db::*;
21pub use crate::target::*;