Crates.io | rclua |
lib.rs | rclua |
version | 1.0.2 |
source | src |
created_at | 2024-05-07 09:59:06.208829 |
updated_at | 2024-08-20 16:35:26.835834 |
description | Execute Lua in Rust. |
homepage | |
repository | https://github.com/flucium/rclua |
max_upload_size | |
id | 1232036 |
size | 1,997,787 |
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
Lua 5.4.6 / Lua 5.4.0
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
There are two main ways to use it. 1: crates.io. 2: self build.
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"
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" }
RCLua is licensed under the MIT License.
For Third-party licenses please read LICENSE_THIRDPARTY.