lua-gc 0.0.16

A Lua 5.4 interpreter implemented in safe Rust.
Documentation
[package]
name = "lua-gc"
version.workspace = true
description.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true

# Per harness/unsafe-budgets.toml, this crate may use a small unsafe kernel
# for the production heap/collector substrate. Every block requires
# `// SAFETY: <invariant>`. See PORTING.md ยง11.
[lints.rust]
unsafe_code = "allow"

[dependencies]
# No dependency on lua-types: lua-gc is the lowest crate. lua-types
# depends on lua-gc so that LuaValue/LuaString/UpVal can impl Trace.