Merge pull request #3008 from dwijnand/remove-workaround

Remove #[allow(rust_2018_idioms)] workaround
This commit is contained in:
Oliver Schneider 2018-08-07 13:10:54 +02:00 committed by GitHub
commit 1af90085a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -77,15 +77,6 @@ lazy_static! {
macro_rules! define_Conf {
($(#[$doc: meta] ($rust_name: ident, $rust_name_str: expr, $default: expr => $($ty: tt)+),)+) => {
pub use self::helpers::Conf;
// FIXME(mati865): remove #[allow(rust_2018_idioms)] when it's fixed:
//
// warning: `extern crate` is not idiomatic in the new edition
// --> src/utils/conf.rs:82:22
// |
// 82 | #[derive(Deserialize)]
// | ^^^^^^^^^^^ help: convert it to a `use`
//
#[allow(rust_2018_idioms)]
mod helpers {
use serde_derive::Deserialize;
/// Type used to store lint configuration.