Install the Rhai Crate

In order to use Rhai in a project, the Rhai crate must first be made a dependency.


The easiest way is to install the Rhai crate from [`crates.io`](https://crates.io/crates/rhai/),
starting by looking up the latest version and adding this line under `dependencies` in the project's `Cargo.toml`:

```toml
[dependencies]
rhai = "{{version}}"    # assuming {{version}} is the latest version
```

Automatically use the latest released crate version on [`crates.io`](https://crates.io/crates/rhai/):

```toml
[dependencies]
rhai = "*"
```

Crate versions are released on [`crates.io`](https://crates.io/crates/rhai/) infrequently,
so to track the latest features, enhancements and bug fixes, pull directly from
[GitHub](https://github.com/rhaiscript/rhai):

```toml
[dependencies]
rhai = { git = "https://github.com/rhaiscript/rhai" }
```