From a0cd93e089acccb2d7ea39abc529fc62c847679c Mon Sep 17 00:00:00 2001 From: janiussyafiq Date: Wed, 29 Jul 2026 17:37:05 +0800 Subject: [PATCH] feat: release v0.3.0 --- rockspec/lua-resty-ldap-0.3.0-0.rockspec | 29 ++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 rockspec/lua-resty-ldap-0.3.0-0.rockspec diff --git a/rockspec/lua-resty-ldap-0.3.0-0.rockspec b/rockspec/lua-resty-ldap-0.3.0-0.rockspec new file mode 100644 index 0000000..e84de25 --- /dev/null +++ b/rockspec/lua-resty-ldap-0.3.0-0.rockspec @@ -0,0 +1,29 @@ +package = "lua-resty-ldap" +version = "0.3.0-0" +source = { + url = "git+https://github.com/api7/lua-resty-ldap", + tag = "v0.3.0", +} + +description = { + summary = "Nonblocking Lua ldap driver library for OpenResty", + homepage = "https://github.com/api7/lua-resty-ldap", + license = "Apache License 2.0", + maintainer = "Yuansheng Wang " +} + +dependencies = { + "lua_pack = 2.0.0-0", + "lpeg = 1.0.2-1", +} + +build = { + type = "builtin", + modules = { + ["resty.ldap"] = "lib/resty/ldap.lua", + ["resty.ldap.asn1"] = "lib/resty/ldap/asn1.lua", + ["resty.ldap.filter"] = "lib/resty/ldap/filter.lua", + ["resty.ldap.protocol"] = "lib/resty/ldap/protocol.lua", + ["resty.ldap.client"] = "lib/resty/ldap/client.lua", + } +}