apt-pkg-native 0.3.3

Bindings for libapt-pkg
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use itertools::Itertools;

use apt_pkg_native::simple;
use apt_pkg_native::Cache;

fn main() {
    let mut cache = Cache::get_singleton();
    for item in cache.iter().map(simple::BinaryPackageVersions::new) {
        println!(
            "{} [{}]",
            item.pkg,
            item.versions.iter().map(|x| format!("{}", x)).join(", ")
        );
    }
}