| Crates.io | yaml2lua |
| lib.rs | yaml2lua |
| version | 0.1.1 |
| created_at | 2024-07-15 14:23:03.705597+00 |
| updated_at | 2025-06-29 15:15:56.909704+00 |
| description | Convert YAML to Lua table |
| homepage | |
| repository | https://github.com/DervexHero/yaml2lua |
| max_upload_size | |
| id | 1303906 |
| size | 21,931 |
Convert YAML to Lua table
use yaml2lua::parse;
let yaml = r#"
string: yaml2lua
int: 420
bool: true
array:
- abc
- 123
"#;
let lua = parse(yaml).unwrap();
// Output:
// {
// ["string"] = "yaml2lua",
// ["int"] = 420,
// ["bool"] = true,
// ["array"] = {
// "abc",
// 123,
// },
// }
String, Number and Bool keys