2 unstable releases

0.1.2 Dec 24, 2023
0.1.1 Dec 24, 2023
0.1.0 Dec 24, 2023
0.0.0 Dec 24, 2023

#1055 in Parser implementations

Download history 12/week @ 2023-12-22 1/week @ 2024-02-23 2/week @ 2024-03-01 9/week @ 2024-03-08 82/week @ 2024-03-15 4/week @ 2024-03-22 30/week @ 2024-03-29

125 downloads per month

Apache-2.0

7KB
136 lines

json2lua

Convert JSON to Lua table

Version badge Downloads badge License badge

Example:

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,
// }

lib.rs:

json2lua

Convert JSON to Lua table

Example:

use json2lua::parse;

let json = r#"{
  "string": "json2lua",
  "int": 420,
  "bool": true,
  "null": null
}"#;

let lua = parse(json).unwrap();
// Output:
// {
//   ["string"] = "json2lua",
//   ["int"] = 420,
//   ["bool"] = true,
//   ["null"] = nil,
// }

Made with <3 by Dervex

Dependencies

~1.1–1.7MB
~31K SLoC