11 releases (6 breaking)

0.7.0 Mar 2, 2024
0.6.0 Dec 3, 2023
0.5.0 Apr 16, 2023
0.4.1 Nov 26, 2022
0.1.1 Feb 21, 2021

#286 in Web programming

Download history 398/week @ 2024-03-29 417/week @ 2024-04-05 645/week @ 2024-04-12 390/week @ 2024-04-19 552/week @ 2024-04-26 603/week @ 2024-05-03 440/week @ 2024-05-10 594/week @ 2024-05-17 606/week @ 2024-05-24 368/week @ 2024-05-31 453/week @ 2024-06-07 358/week @ 2024-06-14 508/week @ 2024-06-21 381/week @ 2024-06-28 446/week @ 2024-07-05 486/week @ 2024-07-12

1,884 downloads per month
Used in 10 crates (6 directly)

MIT license

41KB
938 lines

yarn-lock-parser

ActionsStatus Crates.io

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
~37K SLoC