1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
//! # Alpm
//!
//! See [`Alpm`] as the base type to interact with alpm.
//!
// #![doc = include_str!("../../README.md")]

mod add;
mod alpm;
mod be_local;
mod be_pkg;
mod be_sync;
mod cb;
mod conflict;
mod db;
mod deps;
mod dload;
mod error;
mod filelist;
mod handle;
mod list;
mod log;
#[cfg(feature = "mtree")]
mod mtree;
mod package;
mod remove;
mod signing;
mod sync;
mod trans;
mod types;
mod util;
mod utils;

mod version;

pub use crate::add::*;
pub use crate::alpm::*;
pub use crate::be_local::*;
pub use crate::be_pkg::*;
pub use crate::be_sync::*;
pub use crate::cb::*;
pub use crate::conflict::*;
pub use crate::db::*;
pub use crate::deps::*;
pub use crate::dload::*;
pub use crate::error::*;
pub use crate::filelist::*;
pub use crate::handle::*;
pub use crate::list::*;
#[cfg(feature = "mtree")]
pub use crate::mtree::*;
pub use crate::package::*;
pub use crate::remove::*;
pub use crate::signing::*;
pub use crate::sync::*;
pub use crate::trans::*;
pub use crate::types::*;
pub use crate::util::*;
pub use crate::version::*;