blob: 78fe580b97f78cc2aea7078b505a37ec26b37cea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//! Gentoo and PMS related utils.
//!
//! Currently implements:
//! - parsers for atoms and DEPEND expressions
//! - strongly typed representations of atoms, versions, etc
//! - version comparison and equality impls
//! - iterator over repos categories and ebuilds
//!
//! Planned features
//! - profile evaluation
//! - vdb reader
//! - sourcing ebuilds with bash
//!
pub use atom;
pub use useflag;
pub use repo;
|