-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Fix failing tests from the toml-test-harness #11
Comments
I'd be willing to take a stab at getting basic quoted string parsing up to spec next |
That's great but after working on #9, I realized that it would be probably best to take and adapt most of the parsing code from toml_edit crate. The parsing parts seems very standalone and don't drag in extra deps. That code already passes all the tests and will be a much faster way to get to resolve this issue. |
actually spoke too soon. :) Some of that code (especially the strings parser) is quite involved. So carry on please. If if you can learn from and/or take some of |
I've also got a mostly spec compliant handwritten |
Speaking of, I guess that we could lift that parser into here to further drop the number of dependencies, but there's definitely some cleanup that needs to happen first (particularly around the complete lack of error context) |
Nice. I'm glad you already know TOML so well (unlike me). :)
Hm.. while dropping our only mandatory dep does sound appealing, I think I'd rather want to continue with
|
#10 added tests to test the parser against the toml-test-harness suit. However, 210 tests currently fail and were ignored. The task would be to:
The text was updated successfully, but these errors were encountered: