Re-exports§
pub use builtins::LuaAxumRouter;
Modules§
- async_
bridge - builtins
- file_
source - Pluggable file source for Lua’s
fs.read/fs.read_bytes.
Constants§
- BLOCK_
GLOBALS_ ENV - Comma-separated list of additional globals to nil out at VM
creation time (defense-in-depth knob for hardened deployments).
Names support dotted paths into stdlib tables — e.g.
ASSAY_BLOCK_GLOBALS=dofile,os.execute,debug.getinfo. - MODULES_
PATH_ ENV - Environment variable to override the global module search path.
- READONLY_
ENV - Set to
1ortrueto activate read-only mode for every VM the process creates. Mutating builtins stay registered but raisereadonly: <name> blockederrors instead of executing. The--readonlyCLI flag activates the same mode per invocation.