Hello everyone,
I am on the process of upgrading to Julia 1.6, which includes a TOML
package as part of the base libraries.
Before, I was using my own TOML
package, forked from here to returned an OrderedDict
instead of a regular one.
Checking the new implementation I see that changing this:
const TOMLDict = Dict{String, Any}
to use an OrderedDict
would probably be sufficient.
However maintaing my own fork is overkill, specially now that TOML
is part of Base
. Any ideas? Would it be possible to make a Pull Request to make the parser parametric? Maybe there is a good reason not to do this, in which case I would just maintain my own fork again.
Thanks in advance.