kevy-lua-host 1.27.0

kevy-side glue between the kevy-lua bridge and the kevy server's command dispatch path. Owns the per-shard Lua Bridge plus the scoped raw-pointer indirection that lets the bridge's dispatch closure reach `&mut T` shard state without crates.io thread-local helpers.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# kevy-lua-host

kevy-side glue that lets [`kevy-lua`](../kevy-lua)'s `Bridge` reach
the per-shard mutable state (`Store`, etc.) without crates.io
thread-local helpers. Owns one tiny scoped-pointer indirection so
the bridge's `Fn(&[&[u8]], bool) -> Vec<u8> + 'static` dispatch
closure can borrow `&mut T` from the host call frame.

The `unsafe` footprint is one `unsafe { &mut *p }` inside
`with_current`, audited per commit. Single-threaded per shard means
no aliasing or synchronisation concerns. See the crate-level docs in
`src/lib.rs` for the full safety contract.

## License

MIT OR Apache-2.0.