From ff4cc012f582fdb5cf2f2ac62bb7c04365b5e57c Mon Sep 17 00:00:00 2001 From: Umut Date: Mon, 9 Sep 2024 04:49:33 +0300 Subject: [PATCH] chore: add lalr-parsing keyword to cargo manifest --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 781f608..967f292 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "dotlr" description = "An LR(1) parser generator and visualizer created for educational purposes." categories = ["algorithms", "parsing"] -keywords = ["educational", "lr-parsing", "parser-generator"] +keywords = ["educational", "lalr-parsing", "lr-parsing", "parser-generator"] version = "0.2.0" edition = "2021" license = "MIT OR Apache-2.0"