#![warn(missing_docs)]
#![allow(mismatched_lifetime_syntaxes)]
#[cfg(feature = "conf")]
mod conf;
#[cfg(feature = "alpm")]
mod db;
#[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::*;