diff options
author | chai <chaifix@163.com> | 2021-10-20 19:36:15 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2021-10-20 19:36:15 +0800 |
commit | f2dcd16fc72e2f10c9504897bacf5c4c2ecff516 (patch) | |
tree | 29cb7704db0e75bb16b31c1541abcf871f623cd8 /Resources/DefaultContent/Libraries/lbase64/rockspec/base64-1.5-2.rockspec | |
parent | afdcbfa9c4259fb003fd072ae011836230e7e39b (diff) |
+lua libs
Diffstat (limited to 'Resources/DefaultContent/Libraries/lbase64/rockspec/base64-1.5-2.rockspec')
-rw-r--r-- | Resources/DefaultContent/Libraries/lbase64/rockspec/base64-1.5-2.rockspec | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Resources/DefaultContent/Libraries/lbase64/rockspec/base64-1.5-2.rockspec b/Resources/DefaultContent/Libraries/lbase64/rockspec/base64-1.5-2.rockspec new file mode 100644 index 0000000..7d0addd --- /dev/null +++ b/Resources/DefaultContent/Libraries/lbase64/rockspec/base64-1.5-2.rockspec @@ -0,0 +1,20 @@ +package = "base64" +version = "1.5-2" +source = { + url = "git://github.com/iskolbin/lbase64", + tag = "v1.5.2", +} +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", + } +} |