-
Notifications
You must be signed in to change notification settings - Fork 34
/
telegram-bot-lua-2.0-0.rockspec
43 lines (38 loc) · 1.06 KB
/
telegram-bot-lua-2.0-0.rockspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package = "telegram-bot-lua"
version = "2.0-0"
source = {
url = "git://github.com/wrxck/telegram-bot-lua.git",
dir = "telegram-bot-lua",
branch = "main"
}
description = {
summary = "A simple yet extensive Lua library for the Telegram bot API.",
detailed = "A simple yet extensive Lua library for the Telegram bot API, with many tools and API-friendly functions.",
license = "GPL-3",
homepage = "https://github.com/wrxck/telegram-bot-lua",
maintainer = "Matthew Hesketh <[email protected]>"
}
supported_platforms = {
"linux",
"macosx",
"unix",
"bsd"
}
dependencies = {
"dkjson >= 2.5-2",
"lpeg >= 1.0.1-1",
"luasec >= 0.6-1",
"luasocket >= 3.0rc1-2",
"multipart-post >= 1.1-1",
"luautf8 >= 0.1.1-1",
"html-entities >= 1.3.1-0"
}
build = {
type = "builtin",
modules = {
["telegram-bot-lua.config"] = "src/config.lua",
["telegram-bot-lua.core"] = "src/core.lua",
["telegram-bot-lua.tools"] = "src/tools.lua",
["telegram-bot-lua.b64url"] = "src/b64url.lua"
}
}