luaur-analyze-cli 0.1.3

Standalone Luau type-checker CLI (Rust).
Documentation
[package]
name = "luaur-analyze-cli"
version.workspace = true
edition.workspace = true
license.workspace = true
authors.workspace = true
repository.workspace = true
description = "Standalone Luau type-checker CLI (Rust)."
keywords = ["luau", "lua", "typechecker", "linter", "cli"]
categories = ["command-line-utilities", "development-tools"]

[lib]
crate-type = ["rlib"]

[[bin]]
name = "luaur-analyze"
path = "src/main.rs"

[dependencies]
wasm-bindgen = { version = "0.2", optional = true }
luaur-analysis = { path = "../luaur-analysis", version = "0.1.3" }
luaur-ast = { path = "../luaur-ast", version = "0.1.3" }
luaur-bytecode = { path = "../luaur-bytecode", version = "0.1.3" }
luaur-cli-lib = { path = "../luaur-cli-lib", version = "0.1.3" }
luaur-common = { path = "../luaur-common", version = "0.1.3" }
luaur-compiler = { path = "../luaur-compiler", version = "0.1.3" }
luaur-config = { path = "../luaur-config", version = "0.1.3" }
luaur-require = { path = "../luaur-require", version = "0.1.3" }
luaur-vm = { path = "../luaur-vm", version = "0.1.3" }

[features]
default = ["std"]
std = []
native = ["std"]
cli = ["native"]
native-codegen = ["native"]
wasm = ["dep:wasm-bindgen"]