net/rockspec/lnet-4.0-0.rockspec
Ryan Ward c3d1a0e4b5 roxkspec update
Why would it not requite luasocket
2019-02-04 21:12:23 -05:00

25 lines
739 B
Lua

package = "lnet"
version = "4.0-0"
source = {
url = "git://github.com/rayaman/net.git",
tag = "v4.0.0",
}
description = {
summary = "Lua networking library that wraps around lua-socket to make networking easy.",
detailed = [[
This library uses the multi library. The new multitasking library and this one are now co-Dependant if using the networkManager integration for network parallelism. This has an event driven approach for networking which allows one to easily work async with the data.
]],
homepage = "https://github.com/rayaman/net",
license = "MIT"
}
dependencies = {
"lua >= 5.1",
"luasocket",
"multi"
}
build = {
type = "builtin",
modules = {
["net.init"] = "net/init.lua",
}
}