luajit 0.1.0

Rust crate for calling LuaJIT from Rust
Documentation

Luajit RS

Documentation

Crate for interfacing with LuaJIT from Rust, for running high-performance Lua code that can integrate with native-code written in rust.

Getting Started

extern crate luajit;

use luajit::State;

pub fn main() {
    let mut state = State::new();
    state.open_libs();
    state.do_string(r#"print("Hello world!")"#);
}