sandbox.lua/sandbox-1.0.1-4.rockspec

25 lines
395 B
Plaintext
Raw Normal View History

package = "sandbox"
2020-12-11 16:52:49 +00:00
version = "1.0.1-4"
2020-12-11 16:52:49 +00:00
source = {
url = "git+https://github.com/kikito/lua-sandbox",
2021-01-07 17:55:19 +00:00
tag = "v1.0.1"
2020-12-11 16:52:49 +00:00
}
description = {
summary = "A pure-lua solution for running untrusted Lua code.",
homepage = "https://github.com/kikito/lua-sandbox",
2020-12-11 16:52:49 +00:00
}
dependencies = {
"lua >= 5.1",
}
build = {
type = "builtin",
modules = {
["sandbox"] = "sandbox.lua",
}
}