lua-coro 0.0.14

A Lua 5.4 interpreter implemented in safe Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Lua coroutines via stackful context switching (`corosensei`). Phase E scope.
//!
//! This crate currently has no unsafe implementation. A future stackful backend
//! must raise its explicit unsafe budget in `harness/unsafe-budgets.toml`.

// ──────────────────────────────────────────────────────────────────────────
// PORT STATUS
//   source:        (none — skeleton; Phase E populates from lcorolib.c)
//   target_crate:  lua-coro
//   confidence:    high
//   todos:         0
//   port_notes:    0
//   unsafe_blocks: 0
//   notes:         placeholder for stackful coroutine port
// ──────────────────────────────────────────────────────────────────────────