- Notifications
You must be signed in to change notification settings - Fork45
jcmoyer/rust-lua53
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Aims to be complete Rust bindings for Lua 5.3 and beyond. Currently,master
is tracking Lua5.3.3
.
Requires a Unix-like environment. On Windows,MSYS2is supported.
You will need:
- wget (fetch on FreeBSD/Dragonfly, curl on MacOS)
- tar
- make
- gcc
Add this to yourCargo.toml
:
[dependencies]lua = "*"
Add this to yourCargo.toml
:
[dependencies.lua]git = "https://github.com/jcmoyer/rust-lua53"
externcrate lua;fnmain(){letmut state = lua::State::new(); state.open_libs(); state.do_string("print('hello world!')");}
Licensed under the MIT License, which is the same license Lua is distributedunder. Refer toLICENSE.md
for more information.
About
Lua 5.3 bindings for Rust
Resources
License
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Releases
No releases published
Packages0
No packages published
Uh oh!
There was an error while loading.Please reload this page.
Contributors14
Uh oh!
There was an error while loading.Please reload this page.