Skip to main content

lua_stdlib/
lib.rs

1//! Lua 5.4 standard library — runtime stdlib crate.
2//!
3//! Each module corresponds to one C source under reference/lua-5.4.7/src/.
4//! See ANALYSES/file_deps.txt for the mapping.
5
6pub mod state_stub;
7pub mod base;
8pub mod string_lib;
9pub mod table_lib;
10pub mod math_lib;
11pub mod io_lib;
12pub mod os_lib;
13pub mod utf8_lib;
14pub mod debug_lib;
15pub mod coro_lib;
16pub mod loadlib;
17pub mod auxlib;
18pub mod init;
19
20// ──────────────────────────────────────────────────────────────────────────
21// PORT STATUS
22//   source:        (module aggregator)
23//   target_crate:  lua-stdlib
24//   confidence:    high
25//   todos:         0
26//   port_notes:    0
27//   unsafe_blocks: 0
28//   notes:         Each pub mod maps to one stdlib C file.
29// ──────────────────────────────────────────────────────────────────────────