yaml2lua

Crates.ioyaml2lua
lib.rsyaml2lua
version
sourcesrc
created_at2024-07-15 14:23:03.705597
updated_at2024-07-15 14:23:03.705597
descriptionConvert YAML to Lua table
homepage
repositoryhttps://github.com/DervexHero/yaml2lua
max_upload_size
id1303906
size0
Dervex (DervexDev)

documentation

README

yaml2lua

Convert YAML to Lua table

Version badge Downloads badge License badge Docs badge

Example:

use yaml2lua::parse;

let yaml = r#"
string: yaml2lua
int: 420
bool: true
nil: null
"#;

let lua = parse(yaml).unwrap();
// Output:
// {
//   ["string"] = "yaml2lua",
//   ["int"] = 420,
//   ["bool"] = true,
//   ["nil"] = nil,
// }
Commit count: 0

cargo fmt