Skip to content

Commit

Permalink
Rollup merge of rust-lang#58096 - h-michael:linkchecker-2018, r=Centril
Browse files Browse the repository at this point in the history
Transition linkchecker to 2018 edition

Transition `src/tools/linkchecker` to Rust 2018.

rust-lang#58099
  • Loading branch information
kennytm authored Feb 5, 2019
2 parents a1ec22f + 3a133f2 commit da3a2fb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/tools/linkchecker/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name = "linkchecker"
version = "0.1.0"
authors = ["Alex Crichton <[email protected]>"]
edition = "2018"

[[bin]]
name = "linkchecker"
Expand Down
4 changes: 3 additions & 1 deletion src/tools/linkchecker/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,16 @@
//! A few whitelisted exceptions are allowed as there's known bugs in rustdoc,
//! but this should catch the majority of "broken link" cases.

#![deny(rust_2018_idioms)]

use std::collections::hash_map::Entry;
use std::collections::{HashMap, HashSet};
use std::env;
use std::fs;
use std::path::{Path, PathBuf, Component};
use std::rc::Rc;

use Redirect::*;
use crate::Redirect::*;

macro_rules! t {
($e:expr) => (match $e {
Expand Down

0 comments on commit da3a2fb

Please sign in to comment.