mirror of
https://github.com/servo/servo
synced 2026-04-26 01:25:32 +02:00
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>
19 lines
507 B
TOML
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",
|
|
]
|