From d05ea90ba810aebf9e75bf2d29a1aa1afb9882e2 Mon Sep 17 00:00:00 2001 From: Zeping Bu Date: Mon, 14 Sep 2026 10:42:03 +0800 Subject: [PATCH] feat: release v0.1.0 --- .../api7-lua-resty-websocket-0.1.0-0.rockspec | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 rockspec/api7-lua-resty-websocket-0.1.0-0.rockspec diff --git a/rockspec/api7-lua-resty-websocket-0.1.0-0.rockspec b/rockspec/api7-lua-resty-websocket-0.1.0-0.rockspec new file mode 100644 index 0000000..1a2dcb1 --- /dev/null +++ b/rockspec/api7-lua-resty-websocket-0.1.0-0.rockspec @@ -0,0 +1,31 @@ +package = "api7-lua-resty-websocket" +version = "0.1.0-0" +source = { + url = "git+https://github.com/api7/lua-resty-websocket", + tag = "v0.1.0", +} + +description = { + summary = "Lua WebSocket implementation for the ngx_lua module", + detailed = [[ + api7-lua-resty-websocket is api7's fork of the OpenResty WebSocket + library. It implements WebSocket server and client libraries based + on the ngx_lua module, taking advantage of ngx_lua's cosocket API + for fully nonblocking behavior. It also carries a WebSocket reverse + proxy module ported from Kong/lua-resty-websocket-proxy. + ]], + homepage = "https://github.com/api7/lua-resty-websocket", + license = "2-clause BSD", +} + +dependencies = {} + +build = { + type = "builtin", + modules = { + ["resty.websocket.client"] = "lib/resty/websocket/client.lua", + ["resty.websocket.server"] = "lib/resty/websocket/server.lua", + ["resty.websocket.protocol"] = "lib/resty/websocket/protocol.lua", + ["resty.websocket.proxy"] = "lib/resty/websocket/proxy.lua", + } +}