lua-rs-hlua-shim 0.1.0

Drop-in replacement for the `hlua` 0.4 embedding API, backed by the pure-Rust omniLua VM. Lets hlua-based consumers (authoscope, sn0int) run on omniLua behind a feature flag.
Documentation
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3

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

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

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

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

[[package]]
name = "lua-rs-hlua-shim"
version = "0.1.0"
dependencies = [
 "lua-parse",
 "lua-stdlib",
 "lua-types",
 "lua-vm",
]

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

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

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