From 343f87fad2536d67d2ce91f30fb2d383242cf4a9 Mon Sep 17 00:00:00 2001 From: threeoh6000 Date: Mon, 15 Jan 2024 23:01:48 +0000 Subject: [PATCH] remove ugly wording --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fd19f65..002dcd8 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # Frostwalker -A TOML-like configuration language parser for Rust. At present, a WIP lexer is present with unit tests. A validator and parser are planned to be added. +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. ## 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.