diff options
Diffstat (limited to 'components/style_derive/lib.rs')
-rw-r--r-- | components/style_derive/lib.rs | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/components/style_derive/lib.rs b/components/style_derive/lib.rs index 8c8c0705e8f..d437fb19900 100644 --- a/components/style_derive/lib.rs +++ b/components/style_derive/lib.rs @@ -4,10 +4,13 @@ #![recursion_limit = "128"] -#[macro_use] extern crate darling; +#[macro_use] +extern crate darling; extern crate proc_macro; -#[macro_use] extern crate quote; -#[macro_use] extern crate syn; +#[macro_use] +extern crate quote; +#[macro_use] +extern crate syn; extern crate synstructure; use proc_macro::TokenStream; |