File: control

package info (click to toggle)
lua-resty-core 0.1.25-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,876 kB
  • sloc: perl: 77; sh: 45; makefile: 19
file content (31 lines) | stat: -rw-r--r-- 1,325 bytes parent folder | download
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
Source: lua-resty-core
Section: net
Priority: optional
Build-Depends: debhelper-compat (= 13),
               dh-lua,
Maintainer: Jan Mojžíš <jan.mojzis@gmail.com>
Homepage: https://github.com/openresty/lua-resty-core
Standards-Version: 4.6.2
Rules-Requires-Root: no
Vcs-Git: https://salsa.debian.org/lua-team/lua-resty-core.git
Vcs-Browser: https://salsa.debian.org/lua-team/lua-resty-core

Package: lua-resty-core
Depends: libluajit2-5.1-2,
         libnginx-mod-http-lua (<< 1:0.10.23.1~),
         libnginx-mod-http-lua (>= 1:0.10.23),
         lua-resty-lrucache,
         ${misc:Depends},
         ${shlibs:Depends},
Provides: ${lua:Provides},
XB-Lua-Versions: ${lua:Versions}
Architecture: all
Description: New FFI-based Lua API for NGINX Lua module
 This pure Lua library reimplements part of the ngx_lua module's Nginx API
 for Lua with LuaJIT FFI and installs the new FFI-based Lua API
 into the ngx.* and ndk.* namespaces used by the ngx_lua module. In addition,
 this Lua library implements any significant new Lua APIs of the ngx_lua module
 as proper Lua modules, like ngx.semaphore and ngx.balancer. The FFI-based
 Lua API can work with LuaJIT's JIT compiler. ngx_lua's default API is based on
 the standard Lua C API, which will never be JIT compiled and the user Lua code
 is always interpreted (slowly).