We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
rust-src
1 parent becea89 commit db1203aCopy full SHA for db1203a
rust/ql/test/setup.sh
@@ -7,11 +7,12 @@ set -euo pipefail
7
# parallel QL tests unless we do the setup prior to launching the tests.
8
# We do this for each `rust-toolchain.toml` we use in the tests (and the root one in `rust` last, so it becomes the
9
# default).
10
-# Notice that we do not need to explicitly add the rust-std component as it's listed in ql/rust/rust-toolchain.toml.
11
12
cd "$(dirname "$0")"
13
14
find . -name rust-toolchain.toml \
15
- -execdir rustup install \;
+ -execdir rustup install \; \
+ -execdir rustup component add rust-src \;
16
17
+# no to install rust-src explicitly, it's listedin ql/rust/rust-toolchain.toml
18
rustup install
0 commit comments