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 auxlib;
7pub mod base;
8#[cfg(feature = "bit32")]
9pub mod bit32_lib;
10#[cfg(feature = "coroutine")]
11pub mod coro_lib;
12#[cfg(feature = "debug")]
13pub mod debug_lib;
14pub mod init;
15#[cfg(feature = "io")]
16pub mod io_lib;
17#[cfg(feature = "package")]
18pub mod loadlib;
19pub mod math_lib;
20#[cfg(feature = "os")]
21pub mod os_lib;
22pub mod sandbox;
23pub mod state_stub;
24pub mod string_lib;
25pub mod table_lib;
26#[cfg(feature = "utf8")]
27pub mod utf8_lib;
28
29// ──────────────────────────────────────────────────────────────────────────
30// PORT STATUS
31// source: (module aggregator)
32// target_crate: lua-stdlib
33// confidence: high
34// todos: 0
35// port_notes: 0
36// unsafe_blocks: 0
37// notes: Each pub mod maps to one stdlib C file.
38// ──────────────────────────────────────────────────────────────────────────