A swiss army knife for creating binary modules for Garry's Mod in Rust.
Because we're using the C-unwind
ABI, this crate must be used on a Nightly Rust compiler.
toml
[toolchain]
channel = "nightly"
```toml [lib] crate-type = ["cdylib"]
[dependencies] gmod = "*" ```
```rust
extern crate gmod;
fn gmod13_open(lua: gmod::lua::State) -> i32 { println!("Hello from binary module!"); 0 }
fn gmod13_close(lua: gmod::lua::State) -> i32 { println!("Goodbye from binary module!"); 0 } ```