Bump Rust toolchain to nightly-2022-04-07. (#3406)

Pull Request Description

Bumps the Rust toolchain to `nightly-2022-04-07`.

[ci no changelog needed]
This commit is contained in:
Michael Mauderer 2022-04-20 09:53:50 +02:00 committed by GitHub
parent 5a6b6749cc
commit 2c8c9f8860
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 2 additions and 5 deletions

View File

@ -20,7 +20,6 @@
#![warn(unsafe_code)]
#![warn(unused_import_braces)]
#![warn(unused_qualifications)]
#![feature(const_fn_trait_bound)]
#![feature(specialization)]
#![feature(trait_alias)]

View File

@ -14,7 +14,6 @@
// === Features ===
#![feature(test)]
#![feature(total_cmp)]
// === Standard Linter Configuration ===
#![deny(non_ascii_idents)]
#![warn(unsafe_code)]

View File

@ -5,7 +5,6 @@
#![feature(const_trait_impl)]
#![feature(auto_traits)]
#![feature(negative_impls)]
#![feature(const_fn_trait_bound)]
#![feature(const_ops)]
#![feature(const_convert)]
#![feature(const_mut_refs)]

2
run
View File

@ -22,7 +22,7 @@ async function init () {
console.log("Checking versions of installed packages.")
await cmd.check_version('node',node_lts_version)
await cmd.check_version('npm',npm_lts_version)
await cmd.check_version('rustc','1.61.0-nightly',{
await cmd.check_version('rustc','1.62.0-nightly',{
preprocess:(v)=>v.substring(6,20)
})
} else {

View File

@ -1,5 +1,5 @@
[toolchain]
channel = "nightly-2022-02-24"
channel = "nightly-2022-04-07"
components = ["clippy"]
profile = "default"
targets = [ "wasm32-unknown-unknown" ]