5 releases (3 stable)
1.0.2 | Aug 20, 2024 |
---|---|
1.0.1 | May 27, 2024 |
1.0.0 | May 26, 2024 |
0.0.2 | May 7, 2024 |
0.0.1 | May 7, 2024 |
#830 in Development tools
409 downloads per month
1MB
88 lines
Contains (static library, 505KB) lua-5.4.6/liblua.a, (static library, 495KB) lua-5.4.0/liblua.a, (ELF exe/lib, 36KB) lua-5.4.0/src/lauxlib.o, (ELF exe/lib, 42KB) lua-5.4.0/src/lstrlib.o, (ELF exe/lib, 37KB) lua-5.4.6/src/lauxlib.o, (ELF exe/lib, 35KB) lua-5.4.6/src/lparser.o and 62 more.
RCLua
RCLua (rclua) is the name given to the combination of Rust, C, and Lua (official).
RCLua allows you to run Lua code from Rust. A key feature is that it wraps Lua official source code in a C program and calls it from Rust. This should make it easier to change Lua versions.
One of the key features of RCLua is that you can use Lua without installing it on your system. Even if Lua is already installed on the system, RCLua will not interfere with it. You can use it without polluting your system. This is because RCLua directly includes the official Lua source code and uses it as a library.
this document assumes RCLua v1.0.2
Supported Lua version
Lua 5.4.6 / Lua 5.4.0
Build
Rough environment: Rust 1.80.1 aarch64-unknown-linux-gnu / GCC 11.4.0 / CC 11.4.0 / GNU Make 4.3.
git clone git@github.com:flucium/rclua.git
# Release build
bash ./rclua/build.sh release
Usage
There are two main ways to use it. 1: crates.io. 2: self build.
crates.io
Please check version: https://crates.io/crates/rclua
# Open `Cargo.toml` in any editor.
# add [dependencies] rclua = "1.0.2" to Cargo.toml.
[dependencies]
rclua = "1.0.2"
self
Do the build as described in Section 'Build'.
# Open `Cargo.toml` in any editor.
# add [dependencies] rclua = "1.0.2" to Cargo.toml.
# 'path = ...' must be the location of RCLua(rclua).
[dependencies]
rclua = { path = "../rclua", version = "1.0.2" }
License
RCLua is licensed under the MIT License.
For Third-party licenses please read LICENSE_THIRDPARTY.
Lua
Dependencies
~0–2.2MB
~44K SLoC