Skip to content

Commit

Permalink
Use lalrpop process_src() helper function
Browse files Browse the repository at this point in the history
This alternative to process_root() was added in lalrpop 0.21 and
searches only in the src directory for lalrpop files, rather than the
entire project directory.
  • Loading branch information
dburgener committed Aug 27, 2024
1 parent 10d7f14 commit 2c866da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ mod casc;

fn main() -> std::io::Result<()> {
// Generate parser
lalrpop::process_root().unwrap();
lalrpop::process_src().unwrap();

// Generate man page
// https://rust-cli.github.io/book/in-depth/docs.html
Expand Down

0 comments on commit 2c866da

Please sign in to comment.