Popularity
0.4
Stable
Activity
0.0
Stable
0
2
1
Programming language: Rust
License: GNU General Public License v3.0 only
pkginfo alternatives and similar packages
Based on the "Parser" category.
Alternatively, view pkginfo alternatives based on common mentions on social networks and blogs.
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
Promo
www.saashub.com
Do you think we are missing an alternative of pkginfo or a related project?
Popular Comparisons
README
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(())
}