Aims to be complete Rust bindings for Lua 5.3 and beyond. Currently, master
is tracking Lua 5.3.3
.
Requires a Unix-like environment. On Windows, MSYS2 is supported.
You will need: - wget (fetch on FreeBSD/Dragonfly, curl on MacOS) - tar - make - gcc
Add this to your Cargo.toml
:
[dependencies]
lua = "*"
Add this to your Cargo.toml
:
[dependencies.lua]
git = "https://github.com/jcmoyer/rust-lua53"
```rust extern crate lua;
fn main() { let mut state = lua::State::new(); state.openlibs(); state.dostring("print('hello world!')"); } ```
Licensed under the MIT License, which is the same license Lua is distributed
under. Refer to LICENSE.md
for more information.