chore: add rustfmt config

This commit is contained in:
Vukašin Vojinović 2026-05-04 18:02:46 +02:00 committed by Jacob Kauffmann
parent cb4a0d3a3a
commit 4b1f388a4f
78 changed files with 394 additions and 485 deletions

View file

@ -3,15 +3,12 @@
use crate::section::{self, Section};
use crate::{Content, Info, Page};
use cosmic::Element;
use cosmic::Task;
use cosmic::app::ContextDrawer;
use cosmic::{Element, Task};
use regex::Regex;
use slotmap::{SecondaryMap, SlotMap, SparseSecondaryMap};
use std::{
any::{Any, TypeId},
collections::HashMap,
};
use std::any::{Any, TypeId};
use std::collections::HashMap;
/// All settings pages are registered and managed by the [`Binder`].
pub struct Binder<Message> {

View file

@ -5,7 +5,9 @@ mod binder;
pub use binder::{AutoBind, Binder};
mod insert;
use cosmic::{Element, Task, app::ContextDrawer, iced::Subscription};
use cosmic::app::ContextDrawer;
use cosmic::iced::Subscription;
use cosmic::{Element, Task};
use downcast_rs::{Downcast, impl_downcast};
pub use insert::Insert;