Installation
How to install and set up Scout RS in your Rust project
Installing Rust Toolchain
Scout is written in Rust, so that we can leverage the language's type safety and tooling. To get started with Rust, you should install the Rust toolchain with the following command. This Rust toolchain will help you run Rust programs and tap into helpful utilities like cargo.
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | shFor more information on Rust, visit the Rust Bible.
Installing Scout_Rs
To install Scout, you can use the following command. This will install the latest version of Scout. You can find the exact version in your Cargo.toml file.
cargo install scout_rsAdd Scout RS to your Cargo.toml file:
cargo add scout-rsor
[dependencies]
scout-rs = "0.91.0"