Popularity
0.3
Stable
Activity
0.0
Stable
0
1
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.
-
git-journal
The Git Commit Message and Changelog Generation Framework :book: -
chomp
A fast monadic-style parser combinator designed to work on stable Rust. -
oak
A typed parser generator embedded in Rust code for Parsing Expression Grammars -
Lavendeux Parser
Extensible inline parser engine, the backend parsing engine for Lavendeux.
Clean code begins in your IDE with SonarLint
Up your coding game and discover issues early. SonarLint is a free plugin that helps you find & fix bugs and security issues from the moment you start writing code. Install from your favorite IDE marketplace today.
Promo
www.sonarlint.org
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(())
}