From 6b2cfdf187d409fbbbff97817d5d226edffbaa61 Mon Sep 17 00:00:00 2001 From: threeoh6000 Date: Mon, 15 Jan 2024 23:02:25 +0000 Subject: [PATCH] also WIP is ugly --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 002dcd8..6eedd04 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # Frostwalker -A TOML-like configuration language parser for Rust. At present, the crate has a WIP lexer with unit tests written for common cases. A validator and parser are planned to be added. +A TOML-like configuration language parser for Rust. At present, the crate has a work in progress lexer with unit tests written for common cases. A validator and parser are planned to be added. ## Justification The Rust crate `toml` pulls in 8 other crates to do its job, including `serde`. While this may not be irksome to basically most Rust developers, I'm used to using severely underpowered Intel hardware so low compile times is a big focus for me so a crate made by me that requires only the standard library compared to one that requires other dependencies is preferrable.