remove ugly wording

This commit is contained in:
abbie 2024-01-15 23:01:48 +00:00
parent c24a97fac9
commit 343f87fad2
Signed by: threeoh6000
GPG key ID: 801FE4AD456E922C

View file

@ -1,5 +1,5 @@
# Frostwalker # 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 ## 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. 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.