# toml2lua Convert TOML to Lua table
## Example: ```rust 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", // }, // } ```