lua-resty-t1k-1.0.0-0.rockspec 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. package = "lua-resty-t1k"
  2. version = "1.0.0-0"
  3. source = {
  4. url = "git://github.com/chaitin/lua-resty-t1k",
  5. tag = "v1.0.0"
  6. }
  7. description = {
  8. summary = "Lua implementation of the T1K protocol for Chaitin SafeLine Web Application Firewall",
  9. detailed = [[
  10. Check https://waf-ce.chaitin.cn/ for more information about Chaitin SafeLine Web Application Firewall.
  11. ]],
  12. homepage = "https://github.com/chaitin/lua-resty-t1k",
  13. license = "Apache License 2.0",
  14. maintainer = "Xudong Wang <xudong.wang@chaitin.com>"
  15. }
  16. build = {
  17. type = "builtin",
  18. modules = {
  19. ["resty.t1k"] = "lib/resty/t1k.lua",
  20. ["resty.t1k.buffer"] = "lib/resty/t1k/buffer.lua",
  21. ["resty.t1k.constants"] = "lib/resty/t1k/constants.lua",
  22. ["resty.t1k.file"] = "lib/resty/t1k/file.lua",
  23. ["resty.t1k.filter"] = "lib/resty/t1k/filter.lua",
  24. ["resty.t1k.handler"] = "lib/resty/t1k/handler.lua",
  25. ["resty.t1k.log"] = "lib/resty/t1k/log.lua",
  26. ["resty.t1k.request"] = "lib/resty/t1k/request.lua",
  27. ["resty.t1k.utils"] = "lib/resty/t1k/utils.lua",
  28. ["resty.t1k.uuid"] = "lib/resty/t1k/uuid.lua",
  29. },
  30. }