Last active
September 26, 2020 07:09
-
-
Save akornatskyy/6a6ed81ae30e705c1f339f82e5c41397 to your computer and use it in GitHub Desktop.
lua-requests with latest lua-cjson
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package = "lua-requests" | |
| version = "1.2-1" | |
| source = { | |
| url = "git://github.com/JakobGreen/lua-requests.git" | |
| } | |
| description = { | |
| summary = "HTTP requests made easy! Support for HTTPS, Basic Auth, Digest Auth. HTTP response parsing has never been easier!", | |
| detailed = [[Similar to Requests for python. | |
| The goal of lua-requests is to make HTTP simple and easy to use. | |
| Currently HTTPS, Basic Authentication, and Digest Authentication are supported. | |
| Checkout the wiki on the github page for more details. Written in pure lua! | |
| ]], | |
| homepage = "https://github.com/JakobGreen/lua-requests", | |
| license = "MIT" | |
| } | |
| dependencies = { | |
| "lua >= 5.1", | |
| "luasocket", | |
| "md5", | |
| "lua-cjson", | |
| "xml", | |
| "luasec >= 0.5.1, < 0.8-1" | |
| } | |
| build = { | |
| type = "builtin", | |
| modules = { | |
| requests = "src/requests.lua" | |
| } | |
| } |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Read more about related lua-requests issue.