mlua/Cargo.toml

48 lines
979 B
TOML
Raw Normal View History

2017-05-21 19:50:59 -04:00
[package]
2019-10-01 11:11:12 -04:00
name = "mlua"
2019-12-26 18:09:11 -05:00
version = "0.2.1"
2019-10-01 11:11:12 -04:00
authors = ["Aleksandr Orlenko <zxteam@pm.me>", "kyren <catherine@chucklefish.org>"]
edition = "2018"
2019-10-01 11:11:12 -04:00
repository = "https://github.com/khvzak/mlua"
documentation = "https://docs.rs/mlua"
2017-05-22 03:06:33 -04:00
readme = "README.md"
2019-10-16 09:59:40 -04:00
keywords = ["lua", "luajit"]
2019-11-04 17:17:55 -05:00
categories = ["api-bindings"]
2017-05-22 03:06:33 -04:00
license = "MIT"
2019-11-04 17:17:55 -05:00
description = """
2019-11-29 08:26:30 -05:00
High level bindings to Lua 5.1/5.2/5.3 (including LuaJIT)
2019-11-04 17:17:55 -05:00
with support of writing native lua modules in Rust.
"""
2017-05-21 19:50:59 -04:00
2019-11-04 17:17:55 -05:00
[badges]
2020-01-06 18:55:56 -05:00
circle-ci = { repository = "khvzak/mlua", branch = "master" }
2019-10-01 13:11:51 -04:00
[workspace]
members = [
"mlua_derive",
]
2019-10-14 17:21:30 -04:00
[features]
default = ["lua53"]
lua53 = []
2019-11-29 08:26:30 -05:00
lua52 = []
lua51 = []
2019-10-16 05:56:44 -04:00
luajit = []
2019-10-14 17:21:30 -04:00
[dependencies]
num-traits = { version = "0.2.6" }
2019-10-01 11:11:12 -04:00
bstr = { version = "0.2", features = ["std"], default_features = false }
2017-05-21 19:50:59 -04:00
[build-dependencies]
cc = { version = "1.0" }
pkg-config = { version = "0.3.11" }
[dev-dependencies]
rustyline = "5.0"
criterion = "0.2.0"
2019-10-16 09:59:40 -04:00
trybuild = "1.0"
[[bench]]
name = "benchmark"
2018-05-14 08:51:51 -04:00
harness = false