Is it possible to consume rlua bin from another lua file ? #265
-
Hello 👋 I'm sorry it's probably a beginner question but is it possible to consume what rlua generated from an external .lua file, e.g. with |
Beta Was this translation helpful? Give feedback.
Answered by
jugglerchris
Feb 22, 2023
Replies: 1 comment 3 replies
-
Hi and welcome! Do you mean use Chris |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
Roms1383
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi and welcome!
Do you mean use
rlua
to make a DLL/SO that can be imported from another Lua interpreter?If so that's not currently possible. However since
rlua
includes the full Lua interpreter, you can make a Rust binary using rlua, which acts just the same as the normallua
interpreter but has extra libraries built in.Chris