forked from craigmj/json4lua
-
Notifications
You must be signed in to change notification settings - Fork 1
/
jsonrpc4lua-1.0.0-1.rockspec
35 lines (34 loc) · 1.06 KB
/
jsonrpc4lua-1.0.0-1.rockspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package="JSONRPC4Lua"
version="1.0.0-1"
source = {
url = "git://github.com/pdxmeshnet/jsonrpc4lua.git",
tag = "1.0.0"
}
description = {
summary = "JSONRPC4Lua implement JSON-RPC-over-http client and server-side for Lua.",
detailed = [[
JSONRPC4Lua implement JSON-RPC-over-http client and server-side for Lua.
JSON is JavaScript Object Notation, a simple encoding of
Javascript-like objects that is ideal for lightweight transmission
of relatively weakly-typed data. RPC is an inter-process communication
mechanism that allows a computer program to cause a subroutine to
execute in a program running on a remote host. JSONRPC4Lua provides a
simple JSON-RPC-over-http client and server-side (in a CGILua
environment) for Lua.
]],
homepage = "http://github.com/pdxmeshnet/jsonrpc4lua/",
license = "GPL"
}
dependencies = {
"lua >= 5.1",
"luasocket",
"cgilua",
"lua-cjson",
}
build = {
type = "builtin",
modules = {
["json.rpc"] = "json/rpc.lua",
["json.rpcserver"] = "json/rpcserver.lua"
}
}