Convert TOML to Lua table
use toml2lua::parse;
let toml = r#"
string = "abc"
int = 123
bool = true
[object]
key = "value"
"#;
let lua = parse(toml).unwrap();
// Output:
// {
// ["string"] = "abc",
// ["int"] = 123,
// ["bool"] = true,
// ["object"] = {
// ["key"] = "value",
// },
// }