-
Notifications
You must be signed in to change notification settings - Fork 109
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add support for toml 1.0 #58
Comments
Toml 1.0 has finally been released, and here is the updated spec (link in OP is dead): https://github.com/toml-lang/toml/blob/master/toml.md |
The spec is available here: https://toml.io/en/v1.0.0 One of the major changes is adding support for dotted keys. There is a WIP PR for that #73, but it hasn't been moving forward recently. |
Splitting out of rust-lang/cargo#5586. Just wanted to double check before you leave that you are good with continuing forward with updating the parser as-is or if the lexer re-work needs to be done and done first. If so, I'll take up #73 and other conformance work for 1.0. |
I think reworking the lexer #57 (if there is a consensus it needs to be done) and comformance to 1.0 are two independent tasks. |
I'm going to declare us implementing 1.0 but with an open bug (#128) |
Required munging the grammar so `combine` could understand, but we got it! Fixes toml-rs#58
Required munging the grammar so `combine` could understand, but we got it! Fixes #58
toml_edit
doesn't properly handle quotes in strings #128The text was updated successfully, but these errors were encountered: