Skip to content
This repository has been archived by the owner on May 12, 2022. It is now read-only.

Commit

Permalink
Merge remote-tracking branch 'origin/chore-nightly-2020-02-05'
Browse files Browse the repository at this point in the history
Raises the target compiler version to nightly-2020-02-05.
  • Loading branch information
yvt committed Feb 5, 2020
2 parents 1913e5b + b89aaef commit 8613696
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ lto = true
lto = true
debug = true

[profile.dev.overrides]
[profile.dev.package]
# A software-based compositor (`swrast`) is used when other backends are not
# available for some reason. This is horrendously slow on debug builds and hurts
# developer experience. To mitigate this issue, always enable optimization for
Expand Down
2 changes: 1 addition & 1 deletion ci/common.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
variables:
rustVersion: nightly-2019-12-18
rustVersion: nightly-2020-02-05
linuxPrestep: |
sudo apt-get update &&
sudo apt-get install -y \
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain
Original file line number Diff line number Diff line change
@@ -1 +1 @@
nightly-2019-12-18
nightly-2020-02-05
1 change: 0 additions & 1 deletion support/minisort/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
//! # Performances
//!
//! It's never faster than `[T]::sort_unstable` for `N > 16`.
#![feature(slice_patterns)]
#![cfg_attr(test, feature(is_sorted))]

use std::{cmp::Ordering, mem::swap};
Expand Down
1 change: 0 additions & 1 deletion tcw3/pal/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
#![feature(const_fn)] // `'static` bounds on `const fn` parameters
#![feature(is_sorted)] // `<[_]>::is_sorted`
#![feature(unsized_locals)] // Call `dyn FnOnce`
#![feature(matches_macro)] // `matches!` (stabilized by rust-lang/rust#67659)
#![allow(clippy::float_cmp)]
// this lint is ridiculous
// When never type (`!`) is stabilized, `msg_send![ ... ];` will be no longer
Expand Down

0 comments on commit 8613696

Please sign in to comment.