-
Notifications
You must be signed in to change notification settings - Fork 115
/
Cargo.toml
43 lines (35 loc) · 1.1 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[package]
name = "rlua"
version = "0.20.1"
authors = ["kyren <[email protected]>"]
edition = "2018"
description = "High level bindings to Lua 5.x"
repository = "https://github.com/mlua-rs/rlua"
documentation = "https://docs.rs/rlua"
readme = "README.md"
keywords = ["lua"]
license = "MIT"
categories = [ "api-bindings", "development-tools::ffi" ]
rust-version = "1.75"
[badges]
circle-ci = { repository = "mlua-rs/rlua", branch = "master" }
[badges.maintenance]
status = "deprecated"
[dependencies]
mlua = { version = "0.9.5", features = ["macros"] }
[features]
default=["builtin-lua54"]
builtin-lua54=["mlua/lua54", "mlua/vendored"]
builtin-lua53=["mlua/lua53", "mlua/vendored"]
builtin-lua51=["mlua/lua51", "mlua/vendored"]
system-lua54=["mlua/lua54"]
system-lua53=["mlua/lua53"]
system-lua51=["mlua/lua51"]
system-luajit=["mlua/luajit"]
# Remove Lua's os lib
#lua-no-oslib=["rlua-lua54-sys/lua-no-oslib","rlua-lua53-sys/lua-no-oslib","rlua-lua51-sys/lua-no-oslib"]
# Enabled functions from the math module that have been deprecated
#lua-compat-mathlib = []
[dev-dependencies]
rustyline = "13.0"
bstr = "1.9.0"