diff options
| author | HampusM <hampus@hampusmat.com> | 2026-05-23 19:56:41 +0200 |
|---|---|---|
| committer | HampusM <hampus@hampusmat.com> | 2026-05-23 19:56:41 +0200 |
| commit | 8a41f5aeb3ac143d731928d1c343cd9338190f0a (patch) | |
| tree | a7a8bba7e119354abbaa9fff6ec4e16d2f66b829 /engine-macros | |
| parent | 02afe68342870ce4f37d7e8fb45c985397d6e08d (diff) | |
Diffstat (limited to 'engine-macros')
| -rw-r--r-- | engine-macros/src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engine-macros/src/lib.rs b/engine-macros/src/lib.rs index a508d8a..9fe92e5 100644 --- a/engine-macros/src/lib.rs +++ b/engine-macros/src/lib.rs @@ -1,8 +1,8 @@ #![deny(clippy::all, clippy::pedantic)] use proc_macro::TokenStream; -use quote::{ToTokens, format_ident, quote}; -use syn::{Fields, Item, ItemEnum, ItemStruct, LitStr, Path as SynPath, parse}; +use quote::{format_ident, quote, ToTokens}; +use syn::{parse, Fields, Item, ItemEnum, ItemStruct, LitStr, Path as SynPath}; macro_rules! syn_path { ($first_segment: ident $(::$segment: ident)*) => { |
