From b3929f22f3f1af0ab23baf854322ada82d3cc742 Mon Sep 17 00:00:00 2001 From: fluxcdbot Date: Sun, 31 Aug 2025 22:24:16 +0000 Subject: [PATCH] CI: autofix rust code. --- src/command/build/render.rs | 6 +-- src/command/build/runner.rs | 6 +-- src/context/ast_node.rs | 4 +- src/context/blog_post_page.rs | 6 +-- src/context/blog_stream.rs | 4 +- src/context/bold.rs | 2 +- src/context/document_element.rs | 2 +- src/context/heading.rs | 2 +- src/context/italic.rs | 2 +- src/context/page.rs | 8 ++-- src/context/paragraph.rs | 2 +- src/context/plain_list_item.rs | 2 +- src/context/plain_list_simple_item.rs | 2 +- src/context/quote_block.rs | 2 +- src/context/regular_link.rs | 2 +- src/context/section.rs | 2 +- src/context/strike_through.rs | 2 +- src/context/table_cell.rs | 2 +- src/context/underline.rs | 2 +- src/intermediate/ast_node.rs | 50 +++++++++++----------- src/intermediate/blog_post.rs | 4 +- src/intermediate/blog_post_page.rs | 2 +- src/intermediate/bold.rs | 2 +- src/intermediate/element.rs | 2 +- src/intermediate/footnote_definition.rs | 4 +- src/intermediate/heading.rs | 2 +- src/intermediate/italic.rs | 2 +- src/intermediate/mod.rs | 2 +- src/intermediate/object.rs | 2 +- src/intermediate/page.rs | 8 ++-- src/intermediate/paragraph.rs | 2 +- src/intermediate/plain_list.rs | 2 +- src/intermediate/plain_list_item.rs | 2 +- src/intermediate/plain_list_simple_item.rs | 2 +- src/intermediate/quote_block.rs | 2 +- src/intermediate/registry.rs | 4 +- src/intermediate/regular_link.rs | 2 +- src/intermediate/section.rs | 2 +- src/intermediate/strike_through.rs | 2 +- src/intermediate/underline.rs | 2 +- 40 files changed, 81 insertions(+), 81 deletions(-) diff --git a/src/command/build/render.rs b/src/command/build/render.rs index b32f63f..07e1cc3 100644 --- a/src/command/build/render.rs +++ b/src/command/build/render.rs @@ -1,8 +1,8 @@ use std::ffi::OsStr; use std::path::PathBuf; -use include_dir::include_dir; use include_dir::Dir; +use include_dir::include_dir; use tokio::fs::DirEntry; use tokio::task::JoinHandle; @@ -15,15 +15,15 @@ use crate::context::RenderBlogStreamInput; use crate::context::RenderContext; use crate::context::RenderPage; use crate::error::CustomError; -use crate::intermediate::get_web_path; use crate::intermediate::BlogPost; use crate::intermediate::IPage; use crate::intermediate::PublishStatus; +use crate::intermediate::get_web_path; use crate::render::DusterRenderer; use crate::render::RendererIntegration; -use crate::walk_fs::walk_fs; use crate::walk_fs::WalkAction; use crate::walk_fs::WalkFsFilterResult; +use crate::walk_fs::walk_fs; use super::stylesheet::Stylesheet; diff --git a/src/command/build/runner.rs b/src/command/build/runner.rs index 835a4f4..5163599 100644 --- a/src/command/build/runner.rs +++ b/src/command/build/runner.rs @@ -8,17 +8,17 @@ use crate::cli::parameters::BuildArgs; use crate::command::build::render::SiteRenderer; use crate::config::Config; use crate::error::CustomError; -use crate::intermediate::get_org_files; use crate::intermediate::BlogPost; use crate::intermediate::IPage; use crate::intermediate::IntermediateContext; use crate::intermediate::PageInput; use crate::intermediate::Registry; -use crate::walk_fs::walk_fs; +use crate::intermediate::get_org_files; use crate::walk_fs::WalkAction; use crate::walk_fs::WalkFsFilterResult; -use include_dir::include_dir; +use crate::walk_fs::walk_fs; use include_dir::Dir; +use include_dir::include_dir; use tokio::fs::DirEntry; static DEFAULT_STYLESHEETS: Dir = diff --git a/src/context/ast_node.rs b/src/context/ast_node.rs index 365c12f..28d2a03 100644 --- a/src/context/ast_node.rs +++ b/src/context/ast_node.rs @@ -3,6 +3,8 @@ use serde::Serialize; use crate::error::CustomError; use crate::intermediate::IAstNode; +use super::RenderHeading; +use super::RenderSection; use super::angle_link::RenderAngleLink; use super::babel_call::RenderBabelCall; use super::bold::RenderBold; @@ -55,8 +57,6 @@ use super::timestamp::RenderTimestamp; use super::underline::RenderUnderline; use super::verbatim::RenderVerbatim; use super::verse_block::RenderVerseBlock; -use super::RenderHeading; -use super::RenderSection; #[derive(Debug, Serialize)] #[serde(untagged)] diff --git a/src/context/blog_post_page.rs b/src/context/blog_post_page.rs index 643975c..d83d8bf 100644 --- a/src/context/blog_post_page.rs +++ b/src/context/blog_post_page.rs @@ -5,15 +5,15 @@ use serde::Serialize; use super::render_context::RenderContext; use crate::context::macros::push_file; use crate::error::CustomError; -use crate::intermediate::get_web_path; use crate::intermediate::BlogPost; use crate::intermediate::BlogPostPage; +use crate::intermediate::get_web_path; -use super::footnote_definition::RenderRealFootnoteDefinition; -use super::macros::render; use super::GlobalSettings; use super::PageHeader; use super::RenderDocumentElement; +use super::footnote_definition::RenderRealFootnoteDefinition; +use super::macros::render; #[derive(Debug)] pub(crate) struct RenderBlogPostPageInput<'a> { diff --git a/src/context/blog_stream.rs b/src/context/blog_stream.rs index 7844fee..ceef74d 100644 --- a/src/context/blog_stream.rs +++ b/src/context/blog_stream.rs @@ -4,12 +4,12 @@ use serde::Serialize; use super::macros::render; use super::render_context::RenderContext; -use crate::context::macros::push_file; use crate::context::RenderDocumentElement; use crate::context::RenderRealFootnoteDefinition; +use crate::context::macros::push_file; use crate::error::CustomError; -use crate::intermediate::get_web_path; use crate::intermediate::BlogPost; +use crate::intermediate::get_web_path; use super::GlobalSettings; use super::PageHeader; diff --git a/src/context/bold.rs b/src/context/bold.rs index 7e2f51f..ebd5d3b 100644 --- a/src/context/bold.rs +++ b/src/context/bold.rs @@ -3,9 +3,9 @@ use serde::Serialize; use crate::error::CustomError; use crate::intermediate::IBold; +use super::RenderObject; use super::macros::render; use super::render_context::RenderContext; -use super::RenderObject; #[derive(Debug, Serialize)] #[serde(tag = "type")] diff --git a/src/context/document_element.rs b/src/context/document_element.rs index b11239c..cd0d227 100644 --- a/src/context/document_element.rs +++ b/src/context/document_element.rs @@ -4,9 +4,9 @@ use super::render_context::RenderContext; use crate::error::CustomError; use crate::intermediate::IDocumentElement; -use super::macros::render; use super::RenderHeading; use super::RenderSection; +use super::macros::render; #[derive(Debug, Serialize)] #[serde(untagged)] diff --git a/src/context/heading.rs b/src/context/heading.rs index 6daa5a1..abec882 100644 --- a/src/context/heading.rs +++ b/src/context/heading.rs @@ -4,9 +4,9 @@ use super::render_context::RenderContext; use crate::error::CustomError; use crate::intermediate::IHeading; -use super::macros::render; use super::RenderDocumentElement; use super::RenderObject; +use super::macros::render; #[derive(Debug, Serialize)] #[serde(tag = "type")] diff --git a/src/context/italic.rs b/src/context/italic.rs index 797c259..806a75e 100644 --- a/src/context/italic.rs +++ b/src/context/italic.rs @@ -4,8 +4,8 @@ use super::render_context::RenderContext; use crate::error::CustomError; use crate::intermediate::IItalic; -use super::macros::render; use super::RenderObject; +use super::macros::render; #[derive(Debug, Serialize)] #[serde(tag = "type")] diff --git a/src/context/page.rs b/src/context/page.rs index f6094b8..8d988b8 100644 --- a/src/context/page.rs +++ b/src/context/page.rs @@ -1,15 +1,15 @@ use std::collections::HashSet; -use super::footnote_definition::RenderRealFootnoteDefinition; -use super::macros::render; -use super::render_context::RenderContext; use super::GlobalSettings; use super::PageHeader; use super::RenderDocumentElement; +use super::footnote_definition::RenderRealFootnoteDefinition; +use super::macros::render; +use super::render_context::RenderContext; use crate::context::macros::push_file; use crate::error::CustomError; -use crate::intermediate::get_web_path; use crate::intermediate::IPage; +use crate::intermediate::get_web_path; use serde::Serialize; #[derive(Debug, Serialize)] diff --git a/src/context/paragraph.rs b/src/context/paragraph.rs index b88240d..4830523 100644 --- a/src/context/paragraph.rs +++ b/src/context/paragraph.rs @@ -4,8 +4,8 @@ use super::render_context::RenderContext; use crate::error::CustomError; use crate::intermediate::IParagraph; -use super::macros::render; use super::RenderObject; +use super::macros::render; #[derive(Debug, Serialize)] #[serde(tag = "type")] diff --git a/src/context/plain_list_item.rs b/src/context/plain_list_item.rs index e40484c..15940b5 100644 --- a/src/context/plain_list_item.rs +++ b/src/context/plain_list_item.rs @@ -4,9 +4,9 @@ use super::render_context::RenderContext; use crate::error::CustomError; use crate::intermediate::IPlainListItem; -use super::macros::render; use super::RenderElement; use super::RenderObject; +use super::macros::render; #[derive(Debug, Serialize)] #[serde(tag = "type")] diff --git a/src/context/plain_list_simple_item.rs b/src/context/plain_list_simple_item.rs index d1cae85..af02cef 100644 --- a/src/context/plain_list_simple_item.rs +++ b/src/context/plain_list_simple_item.rs @@ -4,8 +4,8 @@ use super::render_context::RenderContext; use crate::error::CustomError; use crate::intermediate::IPlainListSimpleItem; -use super::macros::render; use super::RenderObject; +use super::macros::render; /// Special case for list items with only paragraphs and sublists as their children. In those cases, the paragraph tags are omitted. This is equivalent to a Paragraph but in a different struct to have a different type tag. #[derive(Debug, Serialize)] diff --git a/src/context/quote_block.rs b/src/context/quote_block.rs index 20edd83..4e93f44 100644 --- a/src/context/quote_block.rs +++ b/src/context/quote_block.rs @@ -4,8 +4,8 @@ use super::render_context::RenderContext; use crate::error::CustomError; use crate::intermediate::IQuoteBlock; -use super::macros::render; use super::RenderElement; +use super::macros::render; #[derive(Debug, Serialize)] #[serde(tag = "type")] diff --git a/src/context/regular_link.rs b/src/context/regular_link.rs index fcf9602..b9c61d8 100644 --- a/src/context/regular_link.rs +++ b/src/context/regular_link.rs @@ -5,8 +5,8 @@ use crate::error::CustomError; use crate::intermediate::IRegularLink; use crate::intermediate::LinkTarget; -use super::macros::render; use super::RenderObject; +use super::macros::render; #[derive(Debug, Serialize)] #[serde(tag = "type")] diff --git a/src/context/section.rs b/src/context/section.rs index 9e69f0f..38f8e75 100644 --- a/src/context/section.rs +++ b/src/context/section.rs @@ -4,8 +4,8 @@ use super::render_context::RenderContext; use crate::error::CustomError; use crate::intermediate::ISection; -use super::macros::render; use super::RenderElement; +use super::macros::render; #[derive(Debug, Serialize)] #[serde(tag = "type")] diff --git a/src/context/strike_through.rs b/src/context/strike_through.rs index ac578bf..4434e49 100644 --- a/src/context/strike_through.rs +++ b/src/context/strike_through.rs @@ -4,8 +4,8 @@ use super::render_context::RenderContext; use crate::error::CustomError; use crate::intermediate::IStrikeThrough; -use super::macros::render; use super::RenderObject; +use super::macros::render; #[derive(Debug, Serialize)] #[serde(tag = "type")] diff --git a/src/context/table_cell.rs b/src/context/table_cell.rs index 85ce972..3b96c14 100644 --- a/src/context/table_cell.rs +++ b/src/context/table_cell.rs @@ -4,8 +4,8 @@ use super::render_context::RenderContext; use crate::error::CustomError; use crate::intermediate::ITableCell; -use super::macros::render; use super::RenderObject; +use super::macros::render; #[derive(Debug, Serialize)] #[serde(tag = "type")] diff --git a/src/context/underline.rs b/src/context/underline.rs index c1f1ce2..373820d 100644 --- a/src/context/underline.rs +++ b/src/context/underline.rs @@ -4,8 +4,8 @@ use super::render_context::RenderContext; use crate::error::CustomError; use crate::intermediate::IUnderline; -use super::macros::render; use super::RenderObject; +use super::macros::render; #[derive(Debug, Serialize)] #[serde(tag = "type")] diff --git a/src/intermediate/ast_node.rs b/src/intermediate/ast_node.rs index 785f8ab..f7933e9 100644 --- a/src/intermediate/ast_node.rs +++ b/src/intermediate/ast_node.rs @@ -1,28 +1,3 @@ -use super::angle_link::IAngleLink; -use super::bold::IBold; -use super::citation::ICitation; -use super::citation_reference::ICitationReference; -use super::code::ICode; -use super::comment::IComment; -use super::entity::IEntity; -use super::export_snippet::IExportSnippet; -use super::footnote_reference::IFootnoteReference; -use super::inline_babel_call::IInlineBabelCall; -use super::inline_source_block::IInlineSourceBlock; -use super::italic::IItalic; -use super::keyword::IKeyword; -use super::latex_fragment::ILatexFragment; -use super::line_break::ILineBreak; -use super::org_macro::IOrgMacro; -use super::plain_link::IPlainLink; -use super::plain_text::IPlainText; -use super::radio_link::IRadioLink; -use super::radio_target::IRadioTarget; -use super::regular_link::IRegularLink; -use super::statistics_cookie::IStatisticsCookie; -use super::strike_through::IStrikeThrough; -use super::subscript::ISubscript; -use super::superscript::ISuperscript; use super::IBabelCall; use super::ICenterBlock; use super::IClock; @@ -52,6 +27,31 @@ use super::IUnderline; use super::IVerbatim; use super::IVerseBlock; use super::IntermediateContext; +use super::angle_link::IAngleLink; +use super::bold::IBold; +use super::citation::ICitation; +use super::citation_reference::ICitationReference; +use super::code::ICode; +use super::comment::IComment; +use super::entity::IEntity; +use super::export_snippet::IExportSnippet; +use super::footnote_reference::IFootnoteReference; +use super::inline_babel_call::IInlineBabelCall; +use super::inline_source_block::IInlineSourceBlock; +use super::italic::IItalic; +use super::keyword::IKeyword; +use super::latex_fragment::ILatexFragment; +use super::line_break::ILineBreak; +use super::org_macro::IOrgMacro; +use super::plain_link::IPlainLink; +use super::plain_text::IPlainText; +use super::radio_link::IRadioLink; +use super::radio_target::IRadioTarget; +use super::regular_link::IRegularLink; +use super::statistics_cookie::IStatisticsCookie; +use super::strike_through::IStrikeThrough; +use super::subscript::ISubscript; +use super::superscript::ISuperscript; use crate::error::CustomError; use futures::future::{BoxFuture, FutureExt}; diff --git a/src/intermediate/blog_post.rs b/src/intermediate/blog_post.rs index 246959a..013c3a1 100644 --- a/src/intermediate/blog_post.rs +++ b/src/intermediate/blog_post.rs @@ -7,12 +7,12 @@ use tokio::fs::DirEntry; use tokio::task::JoinHandle; use crate::error::CustomError; +use crate::intermediate::IntermediateContext; use crate::intermediate::blog_post_page::BlogPostPageInput; use crate::intermediate::registry::Registry; -use crate::intermediate::IntermediateContext; -use crate::walk_fs::walk_fs; use crate::walk_fs::WalkAction; use crate::walk_fs::WalkFsFilterResult; +use crate::walk_fs::walk_fs; use super::BlogPostPage; diff --git a/src/intermediate/blog_post_page.rs b/src/intermediate/blog_post_page.rs index 27069f6..d9a5d19 100644 --- a/src/intermediate/blog_post_page.rs +++ b/src/intermediate/blog_post_page.rs @@ -4,10 +4,10 @@ use crate::error::CustomError; use super::footnote_definition::IRealFootnoteDefinition; -use super::macros::intermediate; use super::IDocumentElement; use super::IHeading; use super::ISection; +use super::macros::intermediate; #[derive(Debug)] pub(crate) struct BlogPostPageInput<'b, 'parse> { diff --git a/src/intermediate/bold.rs b/src/intermediate/bold.rs index d7d9ada..0756392 100644 --- a/src/intermediate/bold.rs +++ b/src/intermediate/bold.rs @@ -1,7 +1,7 @@ use organic::types::StandardProperties; -use super::macros::intermediate; use super::IObject; +use super::macros::intermediate; use crate::error::CustomError; diff --git a/src/intermediate/element.rs b/src/intermediate/element.rs index d07534b..ea7d867 100644 --- a/src/intermediate/element.rs +++ b/src/intermediate/element.rs @@ -1,7 +1,7 @@ +use super::IPlainListSimpleItem; use super::comment::IComment; use super::keyword::IKeyword; use super::macros::iselector; -use super::IPlainListSimpleItem; use super::IBabelCall; use super::ICenterBlock; diff --git a/src/intermediate/footnote_definition.rs b/src/intermediate/footnote_definition.rs index f82753e..6d5ee46 100644 --- a/src/intermediate/footnote_definition.rs +++ b/src/intermediate/footnote_definition.rs @@ -1,7 +1,7 @@ -use super::macros::intermediate; -use super::registry::register_footnote_definition; use super::IAstNode; use super::IntermediateContext; +use super::macros::intermediate; +use super::registry::register_footnote_definition; use crate::error::CustomError; use organic::types::StandardProperties; diff --git a/src/intermediate/heading.rs b/src/intermediate/heading.rs index 5cc8f04..ed4fd2b 100644 --- a/src/intermediate/heading.rs +++ b/src/intermediate/heading.rs @@ -1,6 +1,6 @@ -use super::macros::intermediate; use super::IDocumentElement; use super::IObject; +use super::macros::intermediate; use crate::error::CustomError; use organic::types::StandardProperties; diff --git a/src/intermediate/italic.rs b/src/intermediate/italic.rs index 350cf14..a6c5dc2 100644 --- a/src/intermediate/italic.rs +++ b/src/intermediate/italic.rs @@ -1,7 +1,7 @@ use organic::types::StandardProperties; -use super::macros::intermediate; use super::IObject; +use super::macros::intermediate; use crate::error::CustomError; diff --git a/src/intermediate/mod.rs b/src/intermediate/mod.rs index 1fc4c0b..1ebddc7 100644 --- a/src/intermediate/mod.rs +++ b/src/intermediate/mod.rs @@ -71,8 +71,8 @@ mod verse_block; pub(crate) use angle_link::IAngleLink; pub(crate) use ast_node::IAstNode; pub(crate) use babel_call::IBabelCall; -pub(crate) use blog_post::get_org_files; pub(crate) use blog_post::BlogPost; +pub(crate) use blog_post::get_org_files; pub(crate) use blog_post_page::BlogPostPage; pub(crate) use blog_post_page::PublishStatus; pub(crate) use bold::IBold; diff --git a/src/intermediate/object.rs b/src/intermediate/object.rs index 651ac99..7f9ef02 100644 --- a/src/intermediate/object.rs +++ b/src/intermediate/object.rs @@ -21,6 +21,7 @@ use super::plain_text::IPlainText; use super::radio_link::IRadioLink; use super::radio_target::IRadioTarget; +use super::ITarget; use super::regular_link::IRegularLink; use super::statistics_cookie::IStatisticsCookie; use super::strike_through::IStrikeThrough; @@ -29,7 +30,6 @@ use super::superscript::ISuperscript; use super::timestamp::ITimestamp; use super::underline::IUnderline; use super::verbatim::IVerbatim; -use super::ITarget; use futures::future::{BoxFuture, FutureExt}; #[derive(Debug, Clone)] diff --git a/src/intermediate/page.rs b/src/intermediate/page.rs index a819f1b..3bb1556 100644 --- a/src/intermediate/page.rs +++ b/src/intermediate/page.rs @@ -1,12 +1,12 @@ +use super::IDocumentElement; +use super::IHeading; +use super::ISection; +use super::PublishStatus; use super::blog_post_page::get_date; use super::blog_post_page::get_publish_status; use super::blog_post_page::get_title; use super::footnote_definition::IRealFootnoteDefinition; use super::macros::intermediate; -use super::IDocumentElement; -use super::IHeading; -use super::ISection; -use super::PublishStatus; use crate::error::CustomError; use std::path::PathBuf; diff --git a/src/intermediate/paragraph.rs b/src/intermediate/paragraph.rs index 6b022b6..e043bd3 100644 --- a/src/intermediate/paragraph.rs +++ b/src/intermediate/paragraph.rs @@ -1,5 +1,5 @@ -use super::macros::intermediate; use super::IObject; +use super::macros::intermediate; use crate::error::CustomError; use organic::types::StandardProperties; diff --git a/src/intermediate/plain_list.rs b/src/intermediate/plain_list.rs index 62f834b..9c9c1cb 100644 --- a/src/intermediate/plain_list.rs +++ b/src/intermediate/plain_list.rs @@ -1,5 +1,5 @@ -use super::macros::intermediate; use super::IPlainListItem; +use super::macros::intermediate; use crate::error::CustomError; use organic::types::StandardProperties; diff --git a/src/intermediate/plain_list_item.rs b/src/intermediate/plain_list_item.rs index efc4ba3..a314e17 100644 --- a/src/intermediate/plain_list_item.rs +++ b/src/intermediate/plain_list_item.rs @@ -1,5 +1,5 @@ -use super::macros::intermediate; use super::IPlainListSimpleItem; +use super::macros::intermediate; use super::IElement; use super::IObject; diff --git a/src/intermediate/plain_list_simple_item.rs b/src/intermediate/plain_list_simple_item.rs index 79a7665..dd5e8fc 100644 --- a/src/intermediate/plain_list_simple_item.rs +++ b/src/intermediate/plain_list_simple_item.rs @@ -1,5 +1,5 @@ -use super::macros::intermediate; use super::IObject; +use super::macros::intermediate; use crate::error::CustomError; use organic::types::StandardProperties; diff --git a/src/intermediate/quote_block.rs b/src/intermediate/quote_block.rs index e4e6f5d..1182b1c 100644 --- a/src/intermediate/quote_block.rs +++ b/src/intermediate/quote_block.rs @@ -1,5 +1,5 @@ -use super::macros::intermediate; use super::IElement; +use super::macros::intermediate; use crate::error::CustomError; use organic::types::StandardProperties; diff --git a/src/intermediate/registry.rs b/src/intermediate/registry.rs index 30d5830..882f7a9 100644 --- a/src/intermediate/registry.rs +++ b/src/intermediate/registry.rs @@ -3,11 +3,11 @@ use organic::types::Element; use organic::types::Object; use std::collections::HashMap; -use super::ast_node::IAstNode; -use super::ast_node::IntoIAstNode; use super::IObject; use super::IParagraph; use super::IntermediateContext; +use super::ast_node::IAstNode; +use super::ast_node::IntoIAstNode; type IdCounter = u16; diff --git a/src/intermediate/regular_link.rs b/src/intermediate/regular_link.rs index 8f384b6..f58d257 100644 --- a/src/intermediate/regular_link.rs +++ b/src/intermediate/regular_link.rs @@ -5,9 +5,9 @@ use organic::types::LinkType; use organic::types::StandardProperties; use url::Url; +use super::IntermediateContext; use super::get_web_path; use super::macros::intermediate; -use super::IntermediateContext; use super::IObject; use crate::context::RenderContext; diff --git a/src/intermediate/section.rs b/src/intermediate/section.rs index 089eb4e..50648e2 100644 --- a/src/intermediate/section.rs +++ b/src/intermediate/section.rs @@ -1,5 +1,5 @@ -use super::macros::intermediate; use super::IElement; +use super::macros::intermediate; use crate::error::CustomError; use organic::types::StandardProperties; diff --git a/src/intermediate/strike_through.rs b/src/intermediate/strike_through.rs index 3e8a6bc..cf0509a 100644 --- a/src/intermediate/strike_through.rs +++ b/src/intermediate/strike_through.rs @@ -1,7 +1,7 @@ use organic::types::StandardProperties; -use super::macros::intermediate; use super::IObject; +use super::macros::intermediate; use crate::error::CustomError; diff --git a/src/intermediate/underline.rs b/src/intermediate/underline.rs index d30d2c3..bdbad1b 100644 --- a/src/intermediate/underline.rs +++ b/src/intermediate/underline.rs @@ -1,7 +1,7 @@ use organic::types::StandardProperties; -use super::macros::intermediate; use super::IObject; +use super::macros::intermediate; use crate::error::CustomError;