Back to Rhai

README

src/bin/README.md

1.24.01.5 KB
Original Source

Rhai Tools

Tools for working with Rhai scripts.

ToolRequired feature(s)Description
rhai-runruns each filename passed to it as a Rhai script
rhai-replrustylinea simple REPL that interactively evaluates statements
rhai-dbgdebuggingthe Rhai Debugger

For convenience, a feature named bin-features is available which is a combination of the following:

  • decimal – support for decimal numbers
  • metadata – access functions metadata
  • serde – export functions metadata to JSON
  • debugging – required by rhai-dbg
  • rustyline – required by rhai-repl

How to Run

sh
cargo run --features bin-features --bin sample_app_to_run

How to Install

To install these all tools (with full features), use the following command:

sh
cargo install --path . --bins  --features bin-features

or specifically:

sh
cargo install --path . --bin sample_app_to_run  --features bin-features