Transition linkchecker to 2018 edition

This commit is contained in:
Hirokazu Hata 2019-02-03 21:37:08 +09:00
parent 2966fbc10d
commit 3a133f2088
2 changed files with 4 additions and 1 deletions

View File

@ -2,6 +2,7 @@
name = "linkchecker"
version = "0.1.0"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
edition = "2018"
[[bin]]
name = "linkchecker"

View File

@ -14,6 +14,8 @@
//! 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;
@ -21,7 +23,7 @@ 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 {