apt-pkg-native/examples/list.rs
Chris West (Faux) 6acf62ca68 example listing
2017-07-13 14:00:05 +01:00

11 lines
215 B
Rust

extern crate apt_pkg_native;
use apt_pkg_native::Cache;
fn main() {
let mut cache = Cache::get_singleton();
for item in cache.iter().map(|item| item.pretty_print()) {
println!("{}", item);
}
}