lua-parse 0.0.2

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.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ef57a093ea5d5ff2601a84daaba023eacb79acfae7b425cc50ddd31f3962b929"
dependencies = [
 "lua-types",
 "lua-vm",
]

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

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

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

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

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