chore: add rustfmt config

This commit is contained in:
Vukašin Vojinović 2026-04-30 16:07:25 +02:00 committed by Ashley Wulber
parent 9abc4d483b
commit 9c2a86a8f4
98 changed files with 419 additions and 540 deletions

View file

@ -6,13 +6,13 @@ use iced::widget::Container;
pub use subscription::*;
use iced_core::event::{self, Event};
use iced_core::layout;
use iced_core::mouse;
use iced_core::overlay;
use iced_core::renderer;
use iced_core::widget::Tree;
use iced_core::{Alignment, Clipboard, Element, Layout, Length, Padding, Rectangle, Shell, Widget};
use std::{fmt::Debug, hash::Hash};
use iced_core::{
Alignment, Clipboard, Element, Layout, Length, Padding, Rectangle, Shell, Widget, layout,
mouse, overlay, renderer,
};
use std::fmt::Debug;
use std::hash::Hash;
pub use iced_widget::container::{Catalog, Style};

View file

@ -1,13 +1,10 @@
use iced::{
Rectangle,
futures::{
StreamExt,
channel::mpsc::{UnboundedReceiver, unbounded},
stream,
},
};
use iced::Rectangle;
use iced::futures::channel::mpsc::{UnboundedReceiver, unbounded};
use iced::futures::{StreamExt, stream};
use iced_futures::Subscription;
use std::{collections::HashMap, fmt::Debug, hash::Hash};
use std::collections::HashMap;
use std::fmt::Debug;
use std::hash::Hash;
use super::RectangleTracker;