mlua/Cargo.toml

41 lines
1.2 KiB
TOML
Raw Normal View History

2017-05-21 19:50:59 -04:00
[package]
name = "rlua"
version = "0.14.0-alpha.0"
2017-05-22 03:06:33 -04:00
authors = ["kyren <catherine@chucklefish.org>"]
description = "High level bindings to Lua 5.3"
2017-05-29 16:34:39 -04:00
repository = "https://github.com/chucklefish/rlua"
documentation = "https://docs.rs/rlua"
2017-05-22 03:06:33 -04:00
readme = "README.md"
keywords = ["lua"]
license = "MIT"
2017-05-21 19:50:59 -04:00
[badges]
travis-ci = { repository = "chucklefish/rlua", branch = "master" }
[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` makes at least the following
# assumptions about the linked lua library:
# * LUA_INTEGER is long long
# * LUA_NUMBER as double
# * LUA_EXTRASPACE is sizeof(void*)
# * LUAI_MAXSTACK is 1000000
builtin-lua = ["cc"]
[dependencies]
libc = { version = "0.2" }
failure = { git = "https://github.com/rust-lang-nursery/failure", version = "1.0" }
compiletest_rs = { version = "0.3", optional = true }
2017-05-21 19:50:59 -04:00
[build-dependencies]
cc = { version = "1.0", optional = true }
[dev-dependencies]
rustyline = "1.0.0"
criterion = "0.2.0"
[[bench]]
name = "benchmark"
harness = false