[package]
edition = "2021"
name = "luaur-common"
version = "0.1.2"
authors = ["Pawel Jankiewicz <p.jankiewicz@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Foundational data structures and flags for the luaur Luau-in-Rust toolchain."
readme = false
keywords = [
"luau",
"lua",
"data-structures",
"no-std",
]
categories = [
"data-structures",
"no-std",
]
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_common"
crate-type = ["rlib"]
path = "src/lib.rs"
[[test]]
name = "small_vector"
path = "tests/small_vector.rs"
[dependencies.wasm-bindgen]
version = "0.2"
optional = true
[target."cfg(unix)".dependencies.libc]
version = "0.2"
[target."cfg(windows)".dependencies.windows-sys]
version = "0.52"
features = [
"Win32_Foundation",
"Win32_System_Performance",
]