mlua/Cargo.toml

32 lines
719 B
TOML
Raw Normal View History

2017-05-21 18:50:59 -05:00
[package]
name = "rlua"
2018-10-13 16:56:42 -05:00
version = "0.15.3"
2017-05-22 02:06:33 -05:00
authors = ["kyren <catherine@chucklefish.org>"]
edition = "2018"
2017-05-22 02:06:33 -05:00
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
2019-08-08 12:54:08 -05:00
# [badges]
# travis-ci = { repository = "chucklefish/rlua", branch = "master" }
[dependencies]
libc = { version = "0.2" }
num-traits = { version = "0.2.6" }
bstr = {version = "0.2", features = ["std"], default_features = false }
2017-05-21 18:50:59 -05:00
[build-dependencies]
cc = { version = "1.0" }
pkg-config = { version = "0.3.11" }
[dev-dependencies]
rustyline = "5.0"
criterion = "0.2.0"
[[bench]]
name = "benchmark"
2018-05-14 07:51:51 -05:00
harness = false