Go to file
Stephen Chung e98b578ee6
Merge pull request #422 from schungx/master
Fix optimizer bug.
2021-07-01 12:55:29 +08:00
.github/workflows Merge pull request #407 from schungx/master 2021-04-22 23:21:51 +08:00
benches Change string building benchmarks. 2021-04-23 23:37:44 +08:00
codegen Bump rhai_codegen version to require 0.20.3 of rhai. 2021-06-22 22:43:44 +08:00
examples Do not unnecessarily use raw strings. 2021-04-20 12:01:35 +08:00
no_std/no_std_test Use rhaiscript/smartstring to patch no-std. 2021-05-10 11:22:47 +08:00
scripts Add new example scripts. 2021-06-07 20:15:06 +08:00
src Fix optimizer bug. 2021-07-01 12:27:29 +08:00
tests Fix optimizer test. 2021-07-01 12:33:16 +08:00
.gitignore Ignore benches/results. 2021-03-02 21:50:39 +08:00
Cargo.toml Bump version to 1.0. 2021-06-24 11:50:03 +08:00
CHANGELOG.md Fix optimizer bug. 2021-07-01 12:27:29 +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 Prepare for 0.20.3 release. 2021-06-22 22:32:50 +08:00

Rhai - Embedded Scripting for Rust

GitHub last commit Build Status Stars License crates.io crates.io API Docs VS Code plugin installs Sublime Text package downloads Discord Chat Zulip Chat Reddit Channel

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.