lua-parse 0.0.1

Lua 5.4 runtime port in Rust with an AI-assisted C-to-Rust porting harness.
Documentation
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3

[[package]]
name = "lua-code"
version = "0.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "38a6c859c2051f91f4f242145a5364d2f9f06602e978c7b0ec953c11eb89a042"
dependencies = [
 "lua-types",
 "lua-vm",
]

[[package]]
name = "lua-gc"
version = "0.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e373a3349cdd678b5d2ed94ac897cdea2b7084c5a4545eb7d358844b6e100fe0"

[[package]]
name = "lua-lex"
version = "0.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ffec54586e3ae3d72c691f95cd66540d7655f088ba416ba3b77d13bf267c4c9e"
dependencies = [
 "lua-types",
 "lua-vm",
]

[[package]]
name = "lua-parse"
version = "0.0.1"
dependencies = [
 "lua-code",
 "lua-lex",
 "lua-types",
 "lua-vm",
]

[[package]]
name = "lua-types"
version = "0.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bc80ecb73a12c21a565da48b31fc0c4839e015dd85496021f673a8ef16a58c00"
dependencies = [
 "lua-gc",
]

[[package]]
name = "lua-vm"
version = "0.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "19f0ca732d6ae05d3b32c691ac2b192d674f04a7bcacf10b6c658795322436f2"
dependencies = [
 "lua-gc",
 "lua-types",
]