Popularity
0.4
Stable
Activity
0.0
Stable
0
2
1

Programming language: Rust
License: GNU General Public License v3.0 only
Tags: Parser     Parsing     Arch Linux     PKGBUILD    

pkginfo alternatives and similar packages

Based on the "Parser" category.
Alternatively, view pkginfo alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of pkginfo or a related project?

Add another 'Parser' Package

README

Build Status

pkginfo-rs

Rust implementation for reading Arch linux packages informations

Usage

Add following to your Cargo.toml

pkginfo = "0.1.2"

Example:

use pkginfo;

fn main() -> Result<(), pkginfo::errors::Error> {
    let pinfo = pkginfo::new("your-package.pkg.tar.xz")?; // pkg.tar.zst is supported too!

    println!("{:#?}", pinfo);

    Ok(())
}