Skip to content

Commit 87cca4a

Browse files
committed
Add rockspec
1 parent 1b6fbbe commit 87cca4a

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

lua-resty-libjwt-0.1.0-1.rockspec

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
package = "lua-resty-libjwt"
2+
version = "0.1.0-1"
3+
source = {
4+
url = "git://github.com/tsuru/lua-resty-libjwt.git",
5+
tag = "v0.1.0"
6+
}
7+
description = {
8+
summary = "Lua bindings to libjwt (https://github.com/benmcollins/libjwt) using FFI",
9+
homepage = "https://github.com/tsuru/lua-resty-libjwt",
10+
license = "3-clause BSD",
11+
maintainer = "Tsuru <[email protected]>"
12+
}
13+
dependencies = {
14+
"lua >= 5.1",
15+
"lua-cjson >= 2.1.0.10-1",
16+
}
17+
build = {
18+
type = "builtin",
19+
modules = {
20+
["resty.libjwt"] = "lib/resty/libjwt/init.lua",
21+
["resty.libjwt.cached"] = "lib/resty/libjwt/cached.lua",
22+
["resty.libjwt.decode"] = "lib/resty/libjwt/decode.lua",
23+
["resty.libjwt.jwks_c"] = "lib/resty/libjwt/jwks_c.lua",
24+
["resty.libjwt.utils"] = "lib/resty/libjwt/utils.lua",
25+
}
26+
}

0 commit comments

Comments
 (0)