Remove redundant `extern crate` (#10)

This commit is contained in:
Sagi Sarussi 2020-10-07 19:11:36 +03:00 committed by GitHub
parent d0c769a805
commit c280e7a37a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 2 deletions

View File

@ -1,8 +1,6 @@
#![forbid(unsafe_code, future_incompatible, rust_2018_idioms)]
#![deny(missing_debug_implementations, nonstandard_style)]
extern crate proc_macro;
use proc_macro::TokenStream;
use quote::quote;
use syn::{Error, Lit, Meta, NestedMeta, ReturnType};