Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

YAMLStar Lua Binding

Lua binding for the YAMLStar shared library.

local yamlstar = require("yamlstar")

local ys = yamlstar.new()
local data = ys:load("key: value")
local text = ys:dump({foo = {{"bar"}}})
ys:close()

Install the matching libyamlstar release before using this rock:

curl -sSL https://yamlstar.org/install | LIB=1 bash
luarocks install yamlstar