Rhai - embedded scripting for Rust
Rhai is a tiny, simple and fast embedded scripting language for Rust that gives you a safe and easy way to add scripting to your applications.
It provides a familiar syntax based on JavaScript+Rust and a simple Rust interface.
A Quick Example
Contents of my_script.rhai
/// Brute force factorial function
// Calling an external function 'compute'
compute
The Rust part
use ;
Documentation
See The Rhai Book for details on the Rhai scripting engine and language.