package = "lua-resty-string"
version = "0.11-1"
source = {
   url = "git://github.com/openresty/lua-resty-string",
   tag = "v0.11",
}
description = {
  summary = "lua-resty-string - String utilities and common hash functions for ngx_lua and LuaJIT",
  detailed = [[
This library requires an nginx build with OpenSSL, the ngx_lua module, and LuaJIT 2.0.

  ]],
  homepage = "https://github.com/openresty/lua-resty-string",
  license = "BSD"
}
dependencies = {
  "lua >= 5.1",
}
build = {
  type = "builtin",
  modules = {
    ["resty.aes"] = "lib/resty/aes.lua",
    ["resty.md5"] = "lib/resty/md5.lua",
    ["resty.random"] = "lib/resty/random.lua",
    ["resty.sha"] = "lib/resty/sha.lua",
    ["resty.sha1"] = "lib/resty/sha1.lua",
    ["resty.sha224"] = "lib/resty/sha224.lua",
    ["resty.sha256"] = "lib/resty/sha256.lua",
    ["resty.sha384"] = "lib/resty/sha384.lua",
    ["resty.sha512"] = "lib/resty/sha512.lua",
    ["resty.string"] = "lib/resty/string.lua"
  }
}
