luna-core 1.1.0

Pure-Rust Lua runtime (interpreter only, zero third-party dependencies). The JIT-equipped variant lives in the `luna` crate.
Documentation
//! Bytecode VM (P03): instruction set, errors, interpreter, builtins.

pub mod builtins;
pub mod dump;
pub mod error;
pub mod exec;
pub mod isa;
pub mod jit_state;
pub mod lib_bit32;
pub mod lib_coroutine;

pub mod async_drive;
pub mod ergo;
pub mod into_value;
pub mod sandbox;
pub mod table_builder;
pub mod typed_native;

pub use async_drive::{AsyncNativeFn, EvalFuture};
pub use error::{LuaError, LuaErrorKind};
pub use exec::{Error, Vm};
pub use into_value::IntoValue;
pub use sandbox::SandboxBuilder;
pub use table_builder::TableBuilder;
pub use typed_native::{FromLuaArgs, FromLuaValue, IntoLuaReturn, NativeTypedSig};
pub mod lib_debug;
pub mod lib_math;
pub mod lib_os_io;
pub mod lib_string;
pub mod lib_strpack;
pub mod lib_table;
pub mod lib_utf8;
pub mod objname;