Convert JSON to Lua table
use json2lua::parse;
let json = r#"{
"string": "abc",
"int": 123,
"bool": true,
"null": null
}"#;
let lua = parse(json).unwrap();
// Output:
// {
// ["string"] = "abc",
// ["int"] = 123,
// ["bool"] = true,
// ["null"] = nil,
// }