mlua/Cargo.toml

54 lines
1.2 KiB
TOML
Raw Normal View History

2017-05-21 18:50:59 -05:00
[package]
2019-10-01 10:11:12 -05:00
name = "mlua"
2019-12-26 17:09:11 -06:00
version = "0.2.1"
2019-10-01 10:11:12 -05:00
authors = ["Aleksandr Orlenko <zxteam@pm.me>", "kyren <catherine@chucklefish.org>"]
edition = "2018"
2019-10-01 10:11:12 -05:00
repository = "https://github.com/khvzak/mlua"
documentation = "https://docs.rs/mlua"
2017-05-22 02:06:33 -05:00
readme = "README.md"
2019-10-16 08:59:40 -05:00
keywords = ["lua", "luajit"]
2019-11-04 16:17:55 -06:00
categories = ["api-bindings"]
2017-05-22 02:06:33 -05:00
license = "MIT"
links = "lua"
build = "build/main.rs"
2019-11-04 16:17:55 -06:00
description = """
2019-11-29 07:26:30 -06:00
High level bindings to Lua 5.1/5.2/5.3 (including LuaJIT)
2019-11-04 16:17:55 -06:00
with support of writing native lua modules in Rust.
"""
2017-05-21 18:50:59 -05:00
2019-11-04 16:17:55 -06:00
[badges]
2020-01-25 15:53:44 -06:00
# github-actions = { repository = "khvzak/mlua", workflow = "CI" }
2019-10-01 12:11:51 -05:00
[workspace]
members = [
"mlua_derive",
]
2019-10-14 16:21:30 -05:00
[features]
default = ["lua53", "lua-vendored"]
2019-10-14 16:21:30 -05:00
lua53 = []
2019-11-29 07:26:30 -06:00
lua52 = []
lua51 = []
2019-10-16 04:56:44 -05:00
luajit = []
lua-vendored = ["lua-src"]
luajit-vendored = ["luajit", "luajit-src"]
2019-10-14 16:21:30 -05:00
[dependencies]
num-traits = { version = "0.2.6" }
2019-10-01 10:11:12 -05:00
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" }
lua-src = { version = "535.0.1", optional = true }
luajit-src = { version = "210.0.0", optional = true }
[dev-dependencies]
rustyline = "5.0"
criterion = "0.2.0"
2019-10-16 08:59:40 -05:00
trybuild = "1.0"
[[bench]]
name = "benchmark"
2018-05-14 07:51:51 -05:00
harness = false