7 releases

0.1.6 Nov 17, 2024
0.1.5 Oct 10, 2024
0.1.4 Sep 2, 2024
0.1.3 Jun 27, 2024
0.1.2 Nov 27, 2023

#287 in Build Utils

Download history 1153/week @ 2024-08-17 1282/week @ 2024-08-24 2078/week @ 2024-08-31 1841/week @ 2024-09-07 712/week @ 2024-09-14 1647/week @ 2024-09-21 1493/week @ 2024-09-28 937/week @ 2024-10-05 702/week @ 2024-10-12 846/week @ 2024-10-19 679/week @ 2024-10-26 623/week @ 2024-11-02 1824/week @ 2024-11-09 1502/week @ 2024-11-16 579/week @ 2024-11-23 494/week @ 2024-11-30

4,435 downloads per month
Used in 6 crates (3 directly)

Apache-2.0

38KB
1K SLoC

Lossless parser for Makefiles

This crate provides a lossless parser for makefiles, creating a modifiable CST.

Example:


let mf = Makefile::read("Makefile").unwrap();

println!("Rules in the makefile: {:?}", mf.rules().map(|r| r.targets().join(" ")).collect::<Vec<_>>());

lib.rs:

A lossless parser for Makefiles

Example:

use std::io::Read;
let contents = r#"PYTHON = python3

.PHONY: all

all: build

build:
	$(PYTHON) setup.py build
"#;
let makefile: makefile_lossless::Makefile = contents.parse().unwrap();

assert_eq!(makefile.rules().count(), 3);

Dependencies

~1MB
~16K SLoC