bpt 0.1.6

Bedrock Linux package manager
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Reconcile
//!
//! Generic system to reconcile a current state with a target state.

mod bpt_rec;
mod build_order;
mod fileidx_rec;
mod idx_rec;
mod instpkg_rec;
mod pkgidx_rec;
mod traits;
pub use bpt_rec::*;
pub use build_order::*;
pub use fileidx_rec::*;
pub use idx_rec::*;
pub use instpkg_rec::*;
pub use pkgidx_rec::*;
pub use traits::*;