TOML parser and encoder library for Modern C++
TOML for Modern C++
toml11$ g++ -std=c++11 -I/usr/local/include myapp.cpp -o myapp$ #include <toml.hpp>
auto data = toml::parse("config.toml");$ auto out = toml::value{"key", "value"};
std::cout << toml::format(out);