-
Notifications
You must be signed in to change notification settings - Fork 111
/
lua-resty-session-4.0.5-1.rockspec
37 lines (37 loc) · 1.53 KB
/
lua-resty-session-4.0.5-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
36
37
package = "lua-resty-session"
version = "4.0.5-1"
source = {
url = "git+https://github.com/bungle/lua-resty-session.git",
tag = "v4.0.5",
}
description = {
summary = "Session Library for OpenResty - Flexible and Secure",
detailed = "lua-resty-session is a secure, and flexible session library for OpenResty.",
homepage = "https://github.com/bungle/lua-resty-session",
maintainer = "Aapo Talvensaari <[email protected]>, Samuele Illuminati <[email protected]>",
license = "BSD",
}
dependencies = {
"lua >= 5.1",
"lua-ffi-zlib >= 0.5",
"lua-resty-openssl >= 0.8.0",
}
build = {
type = "builtin",
modules = {
["resty.session"] = "lib/resty/session.lua",
["resty.session.dshm"] = "lib/resty/session/dshm.lua",
["resty.session.file"] = "lib/resty/session/file.lua",
["resty.session.file.thread"] = "lib/resty/session/file/thread.lua",
["resty.session.file.utils"] = "lib/resty/session/file/utils.lua",
["resty.session.memcached"] = "lib/resty/session/memcached.lua",
["resty.session.mysql"] = "lib/resty/session/mysql.lua",
["resty.session.postgres"] = "lib/resty/session/postgres.lua",
["resty.session.redis"] = "lib/resty/session/redis.lua",
["resty.session.redis.cluster"] = "lib/resty/session/redis/cluster.lua",
["resty.session.redis.sentinel"] = "lib/resty/session/redis/sentinel.lua",
["resty.session.redis.common"] = "lib/resty/session/redis/common.lua",
["resty.session.shm"] = "lib/resty/session/shm.lua",
["resty.session.utils"] = "lib/resty/session/utils.lua",
},
}