Remove no longer needed extern crate proc_macro; declarations

This commit is contained in:
Jonas Platte 2020-07-24 21:21:13 +02:00
parent 8faeef4fef
commit ce04ea10bf
No known key found for this signature in database
GPG Key ID: CC154DE0E30B7C67
2 changed files with 0 additions and 4 deletions

View File

@ -11,8 +11,6 @@
#![allow(clippy::unknown_clippy_lints)]
#![recursion_limit = "256"]
extern crate proc_macro;
use std::convert::TryFrom as _;
use proc_macro::TokenStream;

View File

@ -5,8 +5,6 @@
#![deny(missing_copy_implementations, missing_debug_implementations, missing_docs)]
extern crate proc_macro;
use proc_macro::TokenStream;
use syn::{parse_macro_input, DeriveInput};