Skip to content

Commit aa40b14

Browse files
committed
Auto merge of #578 - Mark-Simulacrum:no-locked, r=pietroalbini
Update rustwide to 0.13.1 This includes rust-lang/rustwide#61 which addresses breakage in the beta crater run.
2 parents 8c5cc1b + f8b0588 commit aa40b14

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ hmac = "0.7"
6060
sha-1 = "0.8"
6161
rust_team_data = { git = "https://github.com/rust-lang/team" }
6262
systemstat = "0.1.4"
63-
rustwide = { version = "0.13.0", features = ["unstable", "unstable-toolchain-ci"] }
63+
rustwide = { version = "0.13.1", features = ["unstable", "unstable-toolchain-ci"] }
6464
percent-encoding = "2.1.0"
6565
remove_dir_all = "0.5.2"
6666
ctrlc = "3.1.3"

src/prelude.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ pub trait FailExt {
99
}
1010

1111
impl FailExt for dyn Fail {
12+
#[allow(clippy::manual_map)]
1213
fn downcast_ctx<T: Fail>(&self) -> Option<&T> {
1314
if let Some(res) = self.downcast_ref::<T>() {
1415
Some(res)

src/runner/unstable_features.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ fn eat_token<'a>(s: Option<&'a str>, tok: &str) -> Option<&'a str> {
7777

7878
fn eat_whitespace(s: Option<&str>) -> Option<&str> {
7979
s.and_then(|s| {
80+
#[allow(clippy::manual_map)]
8081
if let Some(i) = s.find(|c: char| !c.is_whitespace()) {
8182
Some(&s[i..])
8283
} else {

0 commit comments

Comments
 (0)