mlua/Cargo.toml

26 lines
794 B
TOML
Raw Normal View History

2017-05-21 18:50:59 -05:00
[package]
name = "rlua"
2017-07-09 16:20:51 -05:00
version = "0.8.2"
2017-05-22 02:06:33 -05:00
authors = ["kyren <catherine@chucklefish.org>"]
description = "High level bindings to Lua 5.3"
2017-05-29 15:34:39 -05:00
repository = "https://github.com/chucklefish/rlua"
documentation = "https://docs.rs/rlua"
2017-05-22 02:06:33 -05:00
readme = "README.md"
keywords = ["lua"]
license = "MIT"
2017-05-21 18:50:59 -05:00
[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"]
2017-05-21 18:50:59 -05:00
[build-dependencies]
gcc = { version = "0.3", optional = true }
[dev-dependencies]
rustyline = "1.0.0"