apt-cmd 0.6.0

Async library for interacting with apt commands
Documentation
1
2
3
4
5
6
#[tokio::main]
async fn main() {
    for package in apt_cmd::apt::downgradable_packages().await.unwrap() {
        println!("{:?}", package);
    }
}