mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
clippy_dev: port to edition 2018
This commit is contained in:
parent
b5c4342ef9
commit
f2ecee3638
2 changed files with 5 additions and 5 deletions
|
@ -1,7 +1,10 @@
|
|||
cargo-features = ["edition"]
|
||||
|
||||
[package]
|
||||
name = "clippy_dev"
|
||||
version = "0.0.1"
|
||||
authors = ["Philipp Hansch <dev@phansch.net>"]
|
||||
edition = "2018"
|
||||
|
||||
[dependencies]
|
||||
clap = "~2.32"
|
||||
|
|
|
@ -1,12 +1,9 @@
|
|||
#![feature(tool_lints)]
|
||||
#![allow(clippy::default_hash_types)]
|
||||
extern crate regex;
|
||||
#[macro_use]
|
||||
extern crate lazy_static;
|
||||
extern crate itertools;
|
||||
|
||||
use regex::Regex;
|
||||
use itertools::Itertools;
|
||||
use lazy_static::lazy_static;
|
||||
use regex::Regex;
|
||||
use std::collections::HashMap;
|
||||
use std::ffi::OsStr;
|
||||
use std::fs;
|
||||
|
|
Loading…
Reference in a new issue