lua-stdlib 0.0.14

A Lua 5.4 interpreter implemented in safe Rust.
Documentation
//! Lua 5.4 standard library — runtime stdlib crate.
//!
//! Each module corresponds to one C source under reference/lua-5.4.7/src/.
//! See ANALYSES/file_deps.txt for the mapping.

pub mod state_stub;
pub mod base;
pub mod string_lib;
pub mod table_lib;
pub mod math_lib;
pub mod io_lib;
pub mod os_lib;
pub mod utf8_lib;
pub mod debug_lib;
pub mod coro_lib;
pub mod loadlib;
pub mod auxlib;
pub mod init;

// ──────────────────────────────────────────────────────────────────────────
// PORT STATUS
//   source:        (module aggregator)
//   target_crate:  lua-stdlib
//   confidence:    high
//   todos:         0
//   port_notes:    0
//   unsafe_blocks: 0
//   notes:         Each pub mod maps to one stdlib C file.
// ──────────────────────────────────────────────────────────────────────────