apt-cmd 0.6.0

Async library for interacting with apt commands
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use futures::stream::StreamExt;

#[tokio::main]
async fn main() -> anyhow::Result<()> {
    let (_child, policies) = apt_cmd::AptCache::new()
        .policy(&["firefox", "gnome-shell"])
        .await?;

    futures::pin_mut!(policies);

    while let Some(policy) = policies.next().await {
        println!("policy: {:#?}", policy);
    }

    Ok(())
}