summaryrefslogtreecommitdiff
path: root/engine-macros/src
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2026-05-23 19:56:41 +0200
committerHampusM <hampus@hampusmat.com>2026-05-23 19:56:41 +0200
commit8a41f5aeb3ac143d731928d1c343cd9338190f0a (patch)
treea7a8bba7e119354abbaa9fff6ec4e16d2f66b829 /engine-macros/src
parent02afe68342870ce4f37d7e8fb45c985397d6e08d (diff)
style: format for Rust edition 2021HEADmaster
Diffstat (limited to 'engine-macros/src')
-rw-r--r--engine-macros/src/lib.rs4
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)*) => {