Go to file
2020-09-25 20:00:49 +08:00
.github/workflows Update CI to enforce clippy::perf 2020-09-20 13:11:15 -05:00
benches Fix benchmarks. 2020-07-29 16:09:48 +08:00
codegen Merge pull request #60 from jhwgh1968/plugins 2020-09-23 11:54:57 +08:00
doc Add complete_namespace to Module::eval_ast_as_new. 2020-09-25 18:07:39 +08:00
examples Refine docs. 2020-08-07 18:40:31 +08:00
no_std/no_std_test Put no_std_test into its own empty workspace 2020-09-08 16:17:58 -05:00
scripts Remove extra quote in strings example 2020-08-14 00:10:16 -06:00
src Fix doc test. 2020-09-25 20:00:49 +08:00
tests Fix function calls. 2020-09-25 19:07:24 +08:00
.gitignore Improve shared value treatment. 2020-08-08 16:24:10 +08:00
Cargo.toml Update dependencies. 2020-09-22 17:58:04 +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 Add entry on plugins. 2020-08-31 11:23:11 +08:00
RELEASES.md Add complete_namespace to Module::eval_ast_as_new. 2020-09-25 18:07:39 +08:00
rhai_logo.png Refactor. 2020-06-29 23:55:28 +08:00

Rhai - Embedded Scripting for Rust

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

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.45

Standard features

Protection against attacks

  • 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

Documentation

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

Playground

An Online Playground is available with syntax-highlighting editor. Scripts can be evaluated directly from the editor.

License

Licensed under either:

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.