actix-lua icon indicating copy to clipboard operation
actix-lua copied to clipboard

Safe Lua Scripting Environment for Actix

Results 5 actix-lua issues
Sort by recently updated
recently updated
newest added

This PR attempts to update to the latest versions of rlua, actix, tokio and features. - [x] Update Dependencies - [x] Update Tests - [ ] Ensure Tests are running

what use might [actix-rt](https://github.com/actix/actix-net/tree/c03d869694c87e6d72d0686e360344c94fb1c3f3/actix-rt) have for actix-lua? ([actix-rt docs](https://docs.rs/actix-rt/0.2.1/actix_rt/))

`SyncArbiter` allows us to put blocking statements to separated threads. `LuaActor` is implemented with `AsyncContext`. In order to start an actor with `SyncArbiter`, it has to with `SyncContext`. However, `SyncContext`...

enhancement

**Is your feature request related to a problem? Please describe.** Currently, you can't register `LuaActor` to `System` or `Arbiter` since it does not implement `SystemService`. In order to implement `SystemService`,...

enhancement

I want to make a repl, but I'd need access to the internal vm to execute code. I saw pull #9 and it gives access to the vm on initialization,...