servo/rust-toolchain.toml
Martin Robinson cea4046a3f
Unsimplify rust-toolchain.toml by adding clippy and rustfmt (#37028)
This is a speculative fix for some intermittent clippy failures that we
are seeing on the CI such as:
4235166617

These entries were removed in #35117, but it seems that they are
necessary now.

Testing: This is a fix for the CI, so functioning CI is effectively the
test.

Signed-off-by: Martin Robinson <mrobinson@igalia.com>
2025-05-16 17:04:27 +00:00

17 lines
434 B
TOML

[toolchain]
# Be sure to update the 'rust-overlay' module's url in shell.nix to point to a
# commit which supports the required rustc version and also update the version
# in support/crown/rust-toolchain.toml when bumping this!
channel = "1.85.0"
components = [
"clippy",
# For support/crown
"llvm-tools",
# For support/crown
"rustc-dev",
"rustfmt",
"rustc-dev",
# For rust-analyzer
"rust-src",
]