blob: f25c7b4c0a7dce2fbe9b5b19f01a5328e3963423 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
package = "base64"
version = "1.5-1"
source = {
url = "git+https://github.com/iskolbin/lbase64",
tag = "v1.5.1",
}
description = {
summary = "Pure Lua base64 encoder/decoder",
detailed = [[
Pure Lua [base64](https://en.wikipedia.org/wiki/Base64) encoder/decoder. Works with Lua 5.1+ and LuaJIT. Fallbacks to pure Lua bit operations if bit/bit32/native bit operators are not available.]],
homepage = "https://github.com/iskolbin/lbase64",
license = "MIT/Public Domain"
}
dependencies = {}
build = {
type = "builtin",
modules = {
base64 = "base64.lua",
}
}
|