TOML Implementation
Implement a loader using TOML
Currently looking at using https://github.com/agrison/jtoml for parsing
Turns out none of the toml libraries for java are both good and up to date. I'll probably have to write my own...
Because of this, moved to 0.3
looks like TOML is close to providing an ABNF version of the specification. This should make writing a parser significantly easier. PR toml-lang/toml#236 to the spec provides the ABNF grammar. There are a few java ABNF implementations:
+zml | https://github.com/mwanji/toml4j is the best so far
Any ETA on this yet?
no
On Sat, Jul 17, 2021, at 04:51, Picono435 wrote:
Any ETA on this yet?
— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/SpongePowered/Configurate/issues/3#issuecomment-881886137, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAEZSZEFY7GE63S4ZTXPVHDTYFVD7ANCNFSM4AZS543Q.
Any updates on this?
I recently discovered that jackson has support for TOML formatting, and configurate already has jackson support, but configurate only uses it as a json parser.
Maybe we can make some changes to the existing configurate-jackson to adapt it to multiple data formats from jackson?