Files
servo/rust-toolchain.toml
Jonathan Schwender 948f5b17c0 Add devcontainer configuration (#40500)
The devcontainer configuration makes it easier for users to setup a
working environment, by using docker / podman and a devcontainer IDE
plugin (or the CLI).

Testing: Manually tested the configuration in VS code on linux.
Fixes: #40469

---------

Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
2026-01-24 07:28:19 +00:00

19 lines
507 B
TOML

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