Skip to content

Commit b33415f

Browse files
committed
Simplify use statements
1 parent 7bc7c9f commit b33415f

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

src/lib.rs

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,9 @@
4141
4242
extern crate proc_macro;
4343

44-
use proc_macro2;
45-
#[macro_use]
46-
extern crate quote;
47-
use syn;
48-
4944
use proc_macro::TokenStream;
5045
use proc_macro2::Span;
51-
46+
use quote::quote;
5247
use syn::{Data, Fields, Ident};
5348

5449
// Within `exp`, you can bring things into scope with `extern crate`.

0 commit comments

Comments
 (0)