From aeca6f1b73dddb471a33543e6735a639db1523a2 Mon Sep 17 00:00:00 2001 From: Robbie McKinstry Date: Sun, 20 Oct 2024 16:10:47 -0400 Subject: [PATCH] Add Rust Toolchain File Adding a Rust toolchain file allows us to ensure our CI tests against stable. This file tells Rustup which toolchain to use, and CI will automatically ensure Rust is running the latest version of stable, since we include `rustup update stable` in our CI script. chore: Add Rust toolchain file so we track stable. --- rust-toolchain.toml | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 rust-toolchain.toml diff --git a/rust-toolchain.toml b/rust-toolchain.toml new file mode 100644 index 0000000..9e1e31c --- /dev/null +++ b/rust-toolchain.toml @@ -0,0 +1,3 @@ +[toolchain] +channel = "stable" +components = [ "rust-analyzer" ]