toml
toml copied to clipboard
TOML parser and encoder library for Golang
Suddenly https://github.com/naoina/toml/issues/50 is gone. Is it possible to salvage the issue?
If this were a major version change, I'd accept that "things change" but since it was a minor revision, I feel compelled to point out my now-broken use-case with this...
At some point this library was changed so it can't decode into embedded structs any more ```go package main import ( "fmt" "github.com/naoina/toml" ) type DBConfig struct { User string...
Say I wanted to load a TOML file from a program, change a value, and write it back to disk. The current configuration makes that difficult. Say I wanted to...
It would be awesome if the library could support some simple validations, such as marking which keys are required vs optional and perhaps having some regexp validations for strings and...
In a fork of https://github.com/ethereum/go-ethereum/, I'm adding a field to `ethconfig.Confg` and then setting that field in the corresponding `toml` file. The library fails saying `ethconfig.Config` does not have the...