mirror of
https://github.com/servo/servo.git
synced 2025-06-06 00:25:37 +00:00
* Fix deprecated PanicInfo alias Fixes: ```rust use of deprecated type alias `std::panic::PanicInfo`: use `PanicHookInfo` instead ``` Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com> * build: upgrade rustc to 1.82.0 Tracking issue for the silenced lints: https://github.com/servo/servo/issues/34591 Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com> --------- Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
16 lines
330 B
TOML
16 lines
330 B
TOML
[toolchain]
|
|
# Be sure to update shell.nix and support/crown/rust-toolchain.toml when bumping this!
|
|
channel = "1.82.0"
|
|
|
|
components = [
|
|
"clippy",
|
|
# For support/crown
|
|
"llvm-tools",
|
|
# For support/crown
|
|
"rustc-dev",
|
|
# For docs building
|
|
"rust-docs",
|
|
# For formatting
|
|
"rustfmt",
|
|
]
|
|
profile = "minimal"
|