Work on macro binding generation, some cleanup needed, rename runner to plugin
This commit is contained in:
parent
dda6dcb3b8
commit
f6a9558c5c
22 changed files with 330 additions and 59 deletions
13
crates/plugin_runtime/src/lib.rs
Normal file
13
crates/plugin_runtime/src/lib.rs
Normal file
|
@ -0,0 +1,13 @@
|
|||
use mlua::{Function, Lua, LuaSerdeExt, Value};
|
||||
use serde::{de::DeserializeOwned, Serialize};
|
||||
|
||||
pub use map_macro::{map, set};
|
||||
|
||||
pub mod runtime;
|
||||
pub use runtime::*;
|
||||
|
||||
pub mod lua;
|
||||
pub use lua::*;
|
||||
|
||||
pub mod wasm;
|
||||
pub use wasm::*;
|
Loading…
Add table
Add a link
Reference in a new issue