also WIP is ugly

This commit is contained in:
abbie 2024-01-15 23:02:25 +00:00
parent 343f87fad2
commit 6b2cfdf187
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, 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 ## 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.