Implementation of TypeID in Lua
at main 587 B view raw
1-- https://github.com/luarocks/luarocks/blob/main/docs/creating_a_rock.md 2package = "typeid" 3version = "0.1-1" 4source = { 5 url = "https://github.com/pushcx/typeid-lua", 6 tag = "v0.1-1" 7} 8description = { 9 summary = "Implementation of TypeID in Lua", 10 homepage = "https://github.com/pushcx/typeid-lua", 11 license = "Apache 2.0" 12} 13dependencies = { 14 "lua >= 5.1", 15 "dkjson >= 2.5" -- only for tests 16} 17build = { 18 type = "builtin", 19 modules = { 20 typeid = "typeid.lua", 21 millitime = { 22 sources = {"millitime.c"}, 23 incdirs = {"$(LUA_INCDIR)"}, 24 } 25 } 26}