From 1fc3d551f8dbc06af70965e63c50819cdae893b0 Mon Sep 17 00:00:00 2001 From: Nicolas Mattia Date: Tue, 3 Dec 2024 17:57:20 +0100 Subject: [PATCH] Pin rust toolchain version This ensures that a specific (`1.76`) rust version is used. More recent versions break the `time` version currently used: ``` = note: this is an inference error on crate `time` caused by an API change in Rust 1.80.0; update `time` to version `>=0.3.35` by calling `cargo update` ``` --- search/rust-toolchain.toml | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 search/rust-toolchain.toml diff --git a/search/rust-toolchain.toml b/search/rust-toolchain.toml new file mode 100644 index 0000000000..624eb0ea63 --- /dev/null +++ b/search/rust-toolchain.toml @@ -0,0 +1,2 @@ +[toolchain] +channel = "1.76.0"