forked from bungle/lua-resty-session
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lua-resty-session-dev-1.rockspec
39 lines (39 loc) · 2.19 KB
/
lua-resty-session-dev-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
38
39
package = "lua-resty-session"
version = "dev-1"
source = {
url = "git://github.com/bungle/lua-resty-session.git"
}
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]>",
license = "BSD"
}
dependencies = {
"lua >= 5.1"
}
build = {
type = "builtin",
modules = {
["resty.session"] = "lib/resty/session.lua",
["resty.session.identifiers.random"] = "lib/resty/session/identifiers/random.lua",
["resty.session.storage.shm"] = "lib/resty/session/storage/shm.lua",
["resty.session.storage.dshm"] = "lib/resty/session/storage/dshm.lua",
["resty.session.storage.redis"] = "lib/resty/session/storage/redis.lua",
["resty.session.storage.cookie"] = "lib/resty/session/storage/cookie.lua",
["resty.session.storage.memcache"] = "lib/resty/session/storage/memcache.lua",
["resty.session.storage.memcached"] = "lib/resty/session/storage/memcached.lua",
["resty.session.strategies.default"] = "lib/resty/session/strategies/default.lua",
["resty.session.strategies.regenerate"] = "lib/resty/session/strategies/regenerate.lua",
["resty.session.hmac.sha1"] = "lib/resty/session/hmac/sha1.lua",
["resty.session.ciphers.aes"] = "lib/resty/session/ciphers/aes.lua",
["resty.session.ciphers.none"] = "lib/resty/session/ciphers/none.lua",
["resty.session.compressors.none"] = "lib/resty/session/compressors/none.lua",
["resty.session.compressors.zlib"] = "lib/resty/session/compressors/zlib.lua",
["resty.session.encoders.hex"] = "lib/resty/session/encoders/hex.lua",
["resty.session.encoders.base16"] = "lib/resty/session/encoders/base16.lua",
["resty.session.encoders.base64"] = "lib/resty/session/encoders/base64.lua",
["resty.session.serializers.json"] = "lib/resty/session/serializers/json.lua"
}
}