[package] name = "rlua" version = "0.8.2" authors = ["kyren "] description = "High level bindings to Lua 5.3" repository = "https://github.com/chucklefish/rlua" documentation = "https://docs.rs/rlua" readme = "README.md" keywords = ["lua"] license = "MIT" [features] default = ["builtin-lua"] # Builds the correct version of Lua 5.3 inside the crate. If you want to link a # specialized version of lua into your binary, you can disable this feature to # do that, but care must be taken. `rlua` expects the linked lua to define # LUA_INTEGER as long long, and LUA_NUMBER as double, and may make other # assumptions about how lua is built. builtin-lua = ["gcc"] [build-dependencies] gcc = { version = "0.3", optional = true }