mirror of
https://github.com/bunkerity/bunkerweb
synced 2026-05-24 09:28:37 +00:00
5f2aed616 chore(*): release 4.0.5 f4980f0e1 fix(dshm/memcached): add a missing return parameter as otherwise pool parameters are not respected git-subtree-dir: src/deps/src/lua-resty-session git-subtree-split: 5f2aed616d16fa7ca04dc40e23d6941740cd634d
37 lines
1.5 KiB
Lua
37 lines
1.5 KiB
Lua
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 <aapo.talvensaari@gmail.com>, Samuele Illuminati <samuele@konghq.com>",
|
|
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",
|
|
},
|
|
}
|