techage_modpack_ru_upd/safer_lua/readme.md

23 lines
654 B
Markdown
Raw Permalink Normal View History

2020-05-31 23:31:18 +03:00
SaferLua [safer_lua]
====================
A subset of the language Lua for safe and secure Lua sandboxes with:
- limited code length
- limited execution time
- limited memory use
- limited posibilities to call functions
### License
2022-12-31 12:51:49 +03:00
Copyright (C) 2018-2022 Joachim Stolberg
2020-05-31 23:31:18 +03:00
Code: Licensed under the GNU LGPL version 2.1 or later. See LICENSE.txt
### Dependencies
none
### History
- 2018-06-24 v0.01 * first draft
- 2020-03-14 v1.00 * extracted from TechPack and released
2022-01-03 13:59:31 +03:00
- 2021-11-28 v1.01 * function `string.split2` added, `unpack` removed
2022-12-31 12:51:49 +03:00
- 2022-12-22 v1.02 * Limit code execution time for recursive function calls (#3 by Thomas--S)