0.3.0-0-pre.3

This commit is contained in:
2026-09-20 07:03:34 +02:00
parent a6a59222d6
commit c7ccf57723
14 changed files with 486 additions and 21 deletions

View File

@@ -0,0 +1,13 @@
// file: crates/apps/game-snake-poc-wasm/src/lib.rs
// version: 1
//! WebAssembly adapter facade for the Snake POC.
#![forbid(unsafe_code)]
#![deny(unreachable_pub)]
#![warn(missing_docs)]
mod runtime;
/// Re-export of the Snake WebAssembly runtime adapter.
pub use self::runtime::SnakeWasmGame;