From 9d551ed83fc7ad0f020fca6d129ddfc465b8408b Mon Sep 17 00:00:00 2001 From: Simon Friis Vindum Date: Fri, 18 Sep 2026 13:10:36 +0200 Subject: [PATCH] Rust: Remove test toolchain pin This has no effect now that the extractor always uses a fixed toolchain hardcoded into the extractor. --- rust/ql/test/rust-toolchain.toml | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 rust/ql/test/rust-toolchain.toml diff --git a/rust/ql/test/rust-toolchain.toml b/rust/ql/test/rust-toolchain.toml deleted file mode 100644 index a2094a1d6e14..000000000000 --- a/rust/ql/test/rust-toolchain.toml +++ /dev/null @@ -1,12 +0,0 @@ -# This file specifies the Rust version used to test the rust extractor. -# IMPORTANT: this can also have an impact on QL test results -# -# Pinned to 1.95: this is the newest stable that both expands the builtin -# `format_args!` macro against std (needs >= ~1.94) and still accepts -# `use SomeStruct::{self};`, which became a hard error (E0432) in 1.96 and is -# exercised by the path-resolution test. Do not bump past 1.95 without -# adapting that test. -[toolchain] -channel = "1.95.0" -profile = "minimal" -components = [ "rust-src" ]