-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use a hand-rolled parser instead of nom (#13)
nom is ridiculous overkill for a parser that isn't really that complex. Therefore in order to remove the dependency from `winit`, I'd like to remove this dependency. I've replaced it with a simple hand-rolled parser built on top of the byte slice type. Signed-off-by: John Nunley <dev@notgull.net>
- Loading branch information
Showing
2 changed files
with
67 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,6 +16,3 @@ include = [ | |
"LICENSE", | ||
"README.md", | ||
] | ||
|
||
[dependencies] | ||
nom = "7.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters