lua_coro/lib.rs
1//! Lua coroutines via stackful context switching (`corosensei`). Phase E scope.
2//!
3//! This crate currently has no unsafe implementation. A future stackful backend
4//! must raise its explicit unsafe budget in `harness/unsafe-budgets.toml`.
5
6// ──────────────────────────────────────────────────────────────────────────
7// PORT STATUS
8// source: (none — skeleton; Phase E populates from lcorolib.c)
9// target_crate: lua-coro
10// confidence: high
11// todos: 0
12// port_notes: 0
13// unsafe_blocks: 0
14// notes: placeholder for stackful coroutine port
15// ──────────────────────────────────────────────────────────────────────────