Go to file
2021-03-30 11:39:00 +08:00
.github/workflows Move all functions metadata into metadata feature. 2021-03-24 19:27:38 +08:00
benches Deprecate RegisterFn and RegisterResultFn. 2021-03-15 11:36:30 +08:00
codegen Fix syn regression. 2021-03-29 12:46:46 +08:00
examples Streamline string handling. 2021-03-24 13:17:52 +08:00
no_std/no_std_test Change to no_smartstring feature. 2021-03-29 17:13:54 +08:00
scripts Change rhai_runner and repl to rhai-run and rhai-repl. 2020-12-25 16:08:56 +08:00
src Rename FnWrongDefinition to WrongFnDefinition. 2021-03-30 11:39:00 +08:00
tests Add support for line continuation and multi-line string literals. 2021-03-30 00:21:09 +08:00
.gitignore Ignore benches/results. 2021-03-02 21:50:39 +08:00
Cargo.toml Change to no_smartstring feature. 2021-03-29 17:13:54 +08:00
CHANGELOG.md Rename FnWrongDefinition to WrongFnDefinition. 2021-03-30 11:39:00 +08:00
LICENSE-APACHE.txt Remove appendix from LICENSE-APACHE.txt 2020-07-25 07:08:13 +02:00
LICENSE-MIT.txt Add LICENSE-MIT.txt (based on Syn) 2020-07-25 07:08:16 +02:00
README.md Extract Identifier type. 2021-03-29 11:36:02 +08:00

Rhai - Embedded Scripting for Rust

GitHub last commit Build Status license crates.io crates.io API Docs chat Reddit

Rhai logo

Rhai is an embedded scripting language and evaluation engine for Rust that gives a safe and easy way to add scripting to any application.

Supported targets and builds

  • All common CPU targets for Windows, Linux and MacOS.
  • WebAssembly (WASM)
  • no-std
  • Minimum Rust version 1.49

Standard features

Protected against attacks

  • Don't Panic guarantee - Any panic is a bug. Rhai subscribes to the motto that a library should never panic the host system, and is coded with this in mind.
  • Sand-boxed - the scripting engine, if declared immutable, cannot mutate the containing environment unless explicitly permitted.
  • Rugged - protected against malicious attacks (such as stack-overflow, over-sized data, and runaway scripts etc.) that may come from untrusted third-party user-land scripts.
  • Track script evaluation progress and manually terminate a script run.

For those who actually want their own language

Project Site

rhai.rs

Documentation

See The Rhai Book for details on the Rhai scripting engine and language.

Playground

An Online Playground is available with syntax-highlighting editor, powered by WebAssembly.

Scripts can be evaluated directly from the editor.

License

Licensed under either of the following, at your choice:

Unless explicitly stated otherwise, any contribution intentionally submitted for inclusion in this crate, as defined in the Apache-2.0 license, shall be dual-licensed as above, without any additional terms or conditions.