tinytoml
tinytoml copied to clipboard
A header only C++11 library for parsing TOML
Hi, I have found a bug when I fuzzing . When I enter an input file to a program use toml.h with parseFile, it cause a stack-overflow at parseFile function....
Here is the seed that cause the ABRT when parse it use parseFile. you can use your parse_file.cc to reproduce the ABRT. I think it occured at void toml::failwith
If you have a plan but you don't have the time, I'd like to try it.
It would be nice to be able to support our own custom types to the TOML parser through templates, so that we could simply write `value.as()` for any `My_t` that...
It would be nice if my own code could access "typeToString()", for example when generating error messages in my own parsing code (e.x. _Expected a 'string', but got 'table'_). Is...
I'm trying to compile a simple CUDA file using tinytoml: ```c++ // test_toml.cu #include #include "toml.h" int main () { std::cerr
Hey @mayah. I use this project a lot, and made a Conan recipe for it, now maintained by Bincrafters: https://github.com/bincrafters/conan-tinytoml. Thanks for making tinytoml! 🍻
It will be convenient for users to know what version we are using.
TOML 5.0
A new TOML spec version has been [released](https://github.com/toml-lang/toml/blob/master/CHANGELOG.md#050--2018-07-11). While the progress on tinytoml grew silent in the last months, are you still planning to support TOML v5.0?