Alex Orlenko
|
95b9fe8dac
|
Fix clippy warnings
|
2020-06-07 20:38:19 +01:00 |
|
Alex Orlenko
|
5952a1f709
|
New module feature
Don't link module with Lua core (see: http://lua-users.org/wiki/BuildingModules)
Example and tests for modules
|
2020-06-07 20:38:11 +01:00 |
|
Alex Orlenko
|
d5c22d989a
|
Dirty hack to get lua 5.1 main state
|
2020-06-06 16:07:16 +01:00 |
|
Alex Orlenko
|
a9a4cf13f1
|
Add has_metamethod to AnyUserData
|
2020-06-06 16:07:16 +01:00 |
|
Alex Orlenko
|
c3822219e0
|
Add hooks support (based on rlua v0.17 implementation)
This feature works on lua54, lua53, lua52 and lua51 only.
LuaJIT is unstable.
|
2020-06-06 16:07:16 +01:00 |
|
Alex Orlenko
|
f6da437d8b
|
Update docs
|
2020-06-06 16:07:16 +01:00 |
|
Alex Orlenko
|
2fd6757f39
|
Add LuaJIT 2.0.5 stable support
|
2020-06-06 16:07:16 +01:00 |
|
Alex Orlenko
|
cccec914ca
|
Remove deprecated Table::call
|
2020-05-15 01:48:57 +01:00 |
|
Alex Orlenko
|
687ecc9247
|
Update documentation
|
2020-05-15 01:48:57 +01:00 |
|
Alex Orlenko
|
79bfb112aa
|
Remove redundant lifetimes
|
2020-05-15 01:48:57 +01:00 |
|
Alex Orlenko
|
9f2d598517
|
Add clippy check and fix clippy warnings
|
2020-05-15 01:48:56 +01:00 |
|
Alex Orlenko
|
5a9a308790
|
Provide safe and unsafe Lua modes:
- In safe mode Lua would not have ability to load C code via `require` or `package.loadlib`
- Unsafe mode allows everything.
|
2020-05-12 02:14:48 +01:00 |
|
Alex Orlenko
|
1b2b94c808
|
Use Rust allocator for new Lua states that allows to set memory limit
|
2020-05-12 02:14:48 +01:00 |
|
Alex Orlenko
|
526e7418d8
|
Add MetaMethod::Close to support Lua 5.4 to-be-closed variables
|
2020-05-12 02:14:47 +01:00 |
|
Alex Orlenko
|
539b569ff4
|
Add Lua 5.4 (rc2) support
|
2020-05-11 02:43:34 +01:00 |
|
Alex Orlenko
|
5c226b4915
|
Lua 5.4 FFI
|
2020-05-11 02:43:34 +01:00 |
|
Alex Orlenko
|
d366ce0dd4
|
Scope support (including async)
|
2020-05-11 02:43:34 +01:00 |
|
Alex Orlenko
|
2bd5c2f6ca
|
Hide Lua "Send" capability under the optional "send" feature flag
|
2020-05-11 02:43:34 +01:00 |
|
Alex Orlenko
|
7b0e4b4280
|
Add Send capability to Lua
|
2020-05-11 02:43:34 +01:00 |
|
Alex Orlenko
|
6e2bb73cff
|
Bind Futures lifetimes to 'lua rather than 'static.
Fix async examples.
|
2020-05-11 02:43:34 +01:00 |
|
Alex Orlenko
|
7efcee853d
|
Don't allow 'callback outlive 'lua
|
2020-05-11 02:43:33 +01:00 |
|
Alex Orlenko
|
d672e19365
|
Add ToLua implementation for slices and arrays
|
2020-04-29 16:12:58 +01:00 |
|
Alex Orlenko
|
bda399a5b4
|
Get yield function in the moment of async callback creation.
This is usefull to temporary override `coroutine.yield` prior to create_async_callback()
and then restore to original value.
|
2020-04-28 14:29:36 +01:00 |
|
Alex Orlenko
|
fe5e87b0f5
|
Fix bugs with metatable cache:
- Don't use thread_local as Lua can be created in one thread and executed in another (in module mode);
- Make per state storage without luaL_ref;
|
2020-04-28 14:29:14 +01:00 |
|
Alex Orlenko
|
0efa0fcb6a
|
Update documentation
|
2020-04-20 01:52:01 +01:00 |
|
Alex Orlenko
|
c826798a6d
|
Minor refactor
|
2020-04-19 16:51:35 +01:00 |
|
Alex Orlenko
|
ee08050c1f
|
Add TableExt trait with call_method/function methods
|
2020-04-19 16:15:16 +01:00 |
|
Alex Orlenko
|
222f4df668
|
Add family of call_async function
Update documentation
Move async tests to a separate file
|
2020-04-18 21:26:12 +01:00 |
|
Alex Orlenko
|
47e8a80c1c
|
v0.3.0-alpha.1 with async support
Squashed commit of the async branch.
|
2020-04-17 22:39:50 +01:00 |
|
Alex Orlenko
|
1a788c48f1
|
Cherry-pick changes from rlua:
- Make Value::type_name() public
- Update CallbackError and ExternalError Display impl
|
2020-04-15 21:23:00 +01:00 |
|
Alex Orlenko
|
e4dc773aa3
|
Remove __ipairs metamethod deprecated in lua 5.3 and not available by default
|
2020-01-25 20:47:36 +00:00 |
|
Alex Orlenko
|
27121c779d
|
Add raw_insert() and raw_remove() for tables (represented as lists)
|
2020-01-07 20:53:47 +00:00 |
|
Alex Orlenko
|
5eec0ef56b
|
Implement PartialEq trait for Value (and subtypes)
Add equals() method to compare values optionally invoking __eq.
|
2020-01-07 00:03:03 +00:00 |
|
Alex Orlenko
|
42b33849e1
|
Add support of loading a specified set of standard libraries
|
2019-12-26 23:04:21 +00:00 |
|
Alex Orlenko
|
143c3a81a7
|
Add pair and ipair metamethods support (lua 5.2/5.3 only)
|
2019-11-30 00:58:42 +00:00 |
|
Alex Orlenko
|
fd17a01456
|
Add Lua 5.2 support
|
2019-11-30 00:58:41 +00:00 |
|
Alex Orlenko
|
ae677b0918
|
Move lua 5.1 support under new "lua51" feature
|
2019-11-04 22:23:15 +00:00 |
|
Alex Orlenko
|
6874c2e004
|
Fix examples and docs
|
2019-11-04 22:23:15 +00:00 |
|
Alex Orlenko
|
29aa25a48b
|
Dont take wrapped panic in error_tostring()
|
2019-11-04 22:23:09 +00:00 |
|
Alex Orlenko
|
85607d8bfc
|
Impl Drop for Lua
|
2019-10-17 17:05:42 +01:00 |
|
Alex Orlenko
|
ec08a76a41
|
Don't store extra data in the lua_State extra space
|
2019-10-17 17:05:42 +01:00 |
|
Alex Orlenko
|
c4fd7a9faf
|
Lua 5.1 support
|
2019-10-17 17:05:42 +01:00 |
|
Alex Orlenko
|
b7c578c274
|
Replace libc with std::os::raw
|
2019-10-02 22:12:28 +01:00 |
|
Alex Orlenko
|
224ed8ff52
|
Add mlua_derive proc macro module
|
2019-10-02 22:12:27 +01:00 |
|
Alex Orlenko
|
cb109f6e36
|
Rename to mlua
|
2019-10-01 16:11:12 +01:00 |
|
Alex Orlenko
|
2e5762f6e5
|
fmt glue.c
|
2019-09-30 22:34:47 +01:00 |
|
Alex Orlenko
|
2ca4273ffb
|
Add call method to table
|
2019-09-30 22:15:27 +01:00 |
|
Alex Orlenko
|
78480b5f31
|
Use main state to store extra data and auxiliary registries
|
2019-09-30 22:14:58 +01:00 |
|
Alex Orlenko
|
45159bfda7
|
Add Table::raw_remove method
|
2019-09-29 12:56:06 +01:00 |
|
Alex Orlenko
|
0c230a3037
|
Allow to catch rust panics via pcall
|
2019-09-29 12:56:06 +01:00 |
|