diff options
author | Alex Orlenko <zxteam@protonmail.com> | 2020-01-27 21:21:50 +0000 |
---|---|---|
committer | Alex Orlenko <zxteam@protonmail.com> | 2020-01-27 21:21:50 +0000 |
commit | d5bc9c8c24f220bc08701c8c8da10cb98ac4b291 (patch) | |
tree | 929335b5efe9e71da2721783d66afa9c1bd99c68 /Cargo.toml | |
parent | 5cd0b645c4997da63b1ad513aaab54523d8fcecc (diff) | |
download | mlua-d5bc9c8c24f220bc08701c8c8da10cb98ac4b291.zip |
Combine lua-vendored and luajit-vendored features into "vendored"
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -25,13 +25,12 @@ members = [ ] [features] -default = ["lua53", "lua-vendored"] +default = ["lua53"] lua53 = [] lua52 = [] lua51 = [] luajit = [] -lua-vendored = ["lua-src"] -luajit-vendored = ["luajit", "luajit-src"] +vendored = ["lua-src", "luajit-src"] [dependencies] num-traits = { version = "0.2.6" } |