blob: 61c091188c1455cf42151ee1be68afd681e72095 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
package = "lua-resty-cookie"
version = "0.1.0-1"
source = {
url = "git://github.com/cloudflare/lua-resty-cookie.git",
tag = "v0.1.0",
}
description = {
summary = "Lua library for HTTP cookie manipulations for OpenResty/ngx_lua",
homepage = "https://github.com/cloudflare/lua-resty-cookie",
license = "BSD",
}
dependencies = {
"lua >= 5.1", -- lua-nginx-module needed
}
build = {
type = "builtin",
modules = {
["resty.cookie"] = "lib/resty/cookie.lua"
}
}
|