[package]
edition = "2021"
name = "luaur-cli-lib"
version = "0.1.0"
authors = ["Pawel Jankiewicz <p.jankiewicz@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Shared CLI helpers for the luaur tools."
readme = false
keywords = [
"luau",
"lua",
"cli",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/pjankiewicz/luaur"
[features]
cli = ["native"]
default = ["std"]
native = ["std"]
native-codegen = ["native"]
std = []
wasm = ["dep:wasm-bindgen"]
[lib]
name = "luaur_cli_lib"
crate-type = ["rlib"]
path = "src/lib.rs"
[[bin]]
name = "run_luau"
path = "src/bin/run_luau.rs"
[dependencies.luaur-ast]
version = "0.1.0"
[dependencies.luaur-bytecode]
version = "0.1.0"
[dependencies.luaur-common]
version = "0.1.0"
[dependencies.luaur-compiler]
version = "0.1.0"
[dependencies.luaur-config]
version = "0.1.0"
[dependencies.luaur-vm]
version = "0.1.0"
[dependencies.wasm-bindgen]
version = "0.2"
optional = true
[target."cfg(windows)".dependencies.windows-sys]
version = "0.52"
features = [
"Win32_Foundation",
"Win32_Storage_FileSystem",
]