If you have specialised knowledge of integrating scripting into a Rust program (a game, specifically) with a relatively high performance target and relatively low concern for protection against malware (basic restrictions of host APIs is nice but ultimately not necessary), please hit me up I have questions as I’m not experienced with the specific field
specifically I’m switching away from Rhai because it’s too slow for my usage and because my game is an automation game that has all the content built with scripting, ideally I’d want a very high performance target, anything short of JIT or native won’t be enough. the game’s logic mostly consists of independent scripts that send messages to each other via an actor system, and rendering is done by asynchronously collecting rendering commands from scripts. wasm isn’t out of the picture but it’s clunky and I don’t know how to make it performant or how to minimise serialisation overhead.


