lua-latest-sys
Unsafe Rust bindings for the latest Lua version (5.4.4).
Motivation
Lua is not a very backwards compatible friendly language[1][2].
The goal of this repository is to support the latest and only the latest version of the Lua language.
Example
Add the following line to your Cargo.toml file.
lua-latest-sys = "0.0.1"
Now you can utilize lua-latest-sys in your crate.
An example follows which grabs and prints the global Lua _VERSION variable to Rust console output.
use ;
use ;
Creating the bindings
The bindings are generated with bindgen using the following command.