Adventure Labs Logo
Scout Docs

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 | sh

For 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_rs

Add Scout RS to your Cargo.toml file:

cargo add scout-rs

or

[dependencies]
scout-rs = "0.91.0"

On this page