rockspec_format = "3.0"
package = "tl"
version = "0.3.0-1"
source = {
   url = "git://github.com/teal-language/tl",
   tag = "v0.3.0",
}
description = {
   summary = "A typed dialect of Lua",
   homepage = "https://github.com/teal-language/tl",
}
dependencies = {
   -- this is really an optional dependency if you're running Lua 5.3,
   -- but if you're using LuaRocks, pulling it shouldn't be too much
   -- trouble anyway.
   "compat53",
}
build = {
   modules = {
      tl = "tl.lua",
   },
   install = {
      bin = {
         "tl"
      }
   },
}
