From 992694adea56fbaf777ad4723b8130bce16fd9d9 Mon Sep 17 00:00:00 2001 From: Rafael Lemos Date: Tue, 15 Apr 2025 11:34:12 -0300 Subject: [PATCH] add `rust-toolchain` file Explicitly pin toolchain to version `1.86.0` (current 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..d092944 --- /dev/null +++ b/rust-toolchain.toml @@ -0,0 +1,3 @@ +[toolchain] +channel = "1.86.0" +components = ["rustfmt", "clippy"]