rockspec_format = "3.0"
package = "lua-resty-jwt"
version = "0.3.1-1"
source = {
   url = "git+https://github.com/cdbattags/lua-resty-jwt.git"
}
description = {
   summary = "JWT for ngx_lua and LuaJIT.",
   detailed = [[
    This library requires an nginx build
    with OpenSSL, the ngx_lua module,
    the LuaJIT 2.0, the lua-resty-hmac,
    and the lua-resty-string,
  ]],
   homepage = "https://github.com/cdbattags/lua-resty-jwt",
   license = "Apache License Version 2"
}
dependencies = {
   "lua >= 5.1",
   "lua-resty-openssl >= 0.6.8"
}
build = {
   type = "builtin",
   modules = {
      ["resty.evp"] = "lib/resty/evp.lua",
      ["resty.hmac"] = "third-party/lua-resty-hmac/lib/resty/hmac.lua",
      ["resty.jwt"] = "lib/resty/jwt.lua",
      ["resty.jwt-validators"] = "lib/resty/jwt-validators.lua"
   }
}
