9 unstable releases (4 breaking)
0.5.0 | Apr 16, 2023 |
---|---|
0.4.1 | Nov 26, 2022 |
0.4.0 | Oct 30, 2022 |
0.3.2 | Jul 17, 2022 |
0.1.1 | Feb 21, 2021 |
#245 in Parser implementations
841 downloads per month
Used in 6 crates
(3 directly)
38KB
871 lines
yarn-lock-parser
Easily parse yarn-lock
files (v1 and v2).
Example
use std::{error::Error, fs};
use yarn_lock_parser::{parse_str, Entry};
fn main() -> Result<(), Box<dyn Error>> {
let yarn_lock_text = fs::read_to_string("yarn.lock")?;
let entries: Vec<Entry> = parse_str(&yarn_lock_text)?;
println!("{:?}", entries);
Ok(())
}
Documentation
Visit https://docs.rs/yarn-lock-parser/
Build
You will need cargo, the Rust package manager.
cargo build
Test
cargo test
Dependencies
~1.2–1.8MB
~39K SLoC