g3/g3proxy/utils/lua/Cargo.toml
2023-04-04 17:47:07 +08:00

20 lines
445 B
TOML

[package]
name = "g3proxy-lua"
version = "0.1.0"
license.workspace = true
edition.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow.workspace = true
clap.workspace = true
clap_complete.workspace = true
mlua = { version = "0.8.1" }
[features]
default = ["lua54"]
luajit = ["mlua/luajit"]
lua51 = ["mlua/lua51"]
lua53 = ["mlua/lua53"]
lua54 = ["mlua/lua54"]