mirror of
https://github.com/bytedance/g3.git
synced 2026-05-03 14:10:39 +00:00
20 lines
445 B
TOML
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"]
|