diff options
author | 2025-02-21 19:21:10 +0100 | |
---|---|---|
committer | 2025-02-21 19:21:10 +0100 | |
commit | f1ed99cb47997e1d194a41e7cdf2846f8eb5f8fa (patch) | |
tree | b2eeb7537ffd49bfbdd24c1a9580870eca99caa6 | |
parent | 81ca3d2a223d62fbb48b93dcea5409f6212605fa (diff) | |
parent | 800a73ddd7d4a2e0b1ed23ec565cbc6325b3b7f0 (diff) | |
download | iced-f1ed99cb47997e1d194a41e7cdf2846f8eb5f8fa.tar.gz iced-f1ed99cb47997e1d194a41e7cdf2846f8eb5f8fa.tar.bz2 iced-f1ed99cb47997e1d194a41e7cdf2846f8eb5f8fa.zip |
Merge pull request #2809 from iced-rs/rust-2024
Update to Rust 2024
155 files changed, 223 insertions, 239 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 04e674bf..f087f069 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,7 +8,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest, macOS-latest] - rust: [stable, beta, "1.82"] + rust: [stable, beta, "1.85"] steps: - uses: hecrj/setup-rust-action@v2 with: @@ -122,13 +122,13 @@ members = [ [workspace.package] version = "0.14.0-dev" authors = ["Héctor Ramón Jiménez <hector@hecrj.dev>"] -edition = "2021" +edition = "2024" license = "MIT" repository = "https://github.com/iced-rs/iced" homepage = "https://iced.rs" categories = ["gui"] keywords = ["gui", "ui", "graphics", "interface", "widgets"] -rust-version = "1.82" +rust-version = "1.85" [workspace.dependencies] iced = { version = "0.14.0-dev", path = "." } diff --git a/benches/wgpu.rs b/benches/wgpu.rs index 0605294f..de19c4cf 100644 --- a/benches/wgpu.rs +++ b/benches/wgpu.rs @@ -1,5 +1,5 @@ #![allow(missing_docs)] -use criterion::{criterion_group, criterion_main, Bencher, Criterion}; +use criterion::{Bencher, Criterion, criterion_group, criterion_main}; use iced::alignment; use iced::mouse; diff --git a/core/src/background.rs b/core/src/background.rs index c8b7cbea..1f665ef4 100644 --- a/core/src/background.rs +++ b/core/src/background.rs @@ -1,5 +1,5 @@ -use crate::gradient::{self, Gradient}; use crate::Color; +use crate::gradient::{self, Gradient}; /// The background of some element. #[derive(Debug, Clone, Copy, PartialEq)] diff --git a/core/src/color.rs b/core/src/color.rs index a2e076ae..a9183776 100644 --- a/core/src/color.rs +++ b/core/src/color.rs @@ -227,12 +227,8 @@ macro_rules! color { ($r:expr, $g:expr, $b:expr) => { $crate::Color::from_rgb8($r, $g, $b) }; - ($r:expr, $g:expr, $b:expr, $a:expr) => {{ - $crate::Color::from_rgba8($r, $g, $b, $a) - }}; - ($hex:expr) => {{ - $crate::color!($hex, 1.0) - }}; + ($r:expr, $g:expr, $b:expr, $a:expr) => {{ $crate::Color::from_rgba8($r, $g, $b, $a) }}; + ($hex:expr) => {{ $crate::color!($hex, 1.0) }}; ($hex:expr, $a:expr) => {{ let hex = $hex as u32; diff --git a/core/src/keyboard/event.rs b/core/src/keyboard/event.rs index 6e483f5b..88c57b21 100644 --- a/core/src/keyboard/event.rs +++ b/core/src/keyboard/event.rs @@ -1,6 +1,6 @@ +use crate::SmolStr; use crate::keyboard::key; use crate::keyboard::{Key, Location, Modifiers}; -use crate::SmolStr; /// A keyboard event. /// diff --git a/core/src/keyboard/key.rs b/core/src/keyboard/key.rs index 47169d9a..8edb280c 100644 --- a/core/src/keyboard/key.rs +++ b/core/src/keyboard/key.rs @@ -1252,7 +1252,7 @@ impl PartialEq<Code> for Physical { #[inline] fn eq(&self, rhs: &Code) -> bool { match self { - Physical::Code(ref code) => code == rhs, + Physical::Code(code) => code == rhs, Physical::Unidentified(_) => false, } } @@ -1269,7 +1269,7 @@ impl PartialEq<NativeCode> for Physical { #[inline] fn eq(&self, rhs: &NativeCode) -> bool { match self { - Physical::Unidentified(ref code) => code == rhs, + Physical::Unidentified(code) => code == rhs, Physical::Code(_) => false, } } diff --git a/core/src/shell.rs b/core/src/shell.rs index 56250e2e..e3fcdf89 100644 --- a/core/src/shell.rs +++ b/core/src/shell.rs @@ -1,6 +1,6 @@ +use crate::InputMethod; use crate::event; use crate::window; -use crate::InputMethod; /// A connection to the state of a shell. /// diff --git a/core/src/theme/palette.rs b/core/src/theme/palette.rs index b69f99b1..b4acaa83 100644 --- a/core/src/theme/palette.rs +++ b/core/src/theme/palette.rs @@ -1,5 +1,5 @@ //! Define the colors of a theme. -use crate::{color, Color}; +use crate::{Color, color}; use palette::color_difference::Wcag21RelativeContrast; use palette::rgb::Rgb; diff --git a/core/src/widget/operation/focusable.rs b/core/src/widget/operation/focusable.rs index a1327bc1..1ee41244 100644 --- a/core/src/widget/operation/focusable.rs +++ b/core/src/widget/operation/focusable.rs @@ -1,7 +1,7 @@ //! Operate on widgets that can be focused. -use crate::widget::operation::{self, Operation, Outcome}; -use crate::widget::Id; use crate::Rectangle; +use crate::widget::Id; +use crate::widget::operation::{self, Operation, Outcome}; /// The internal state of a widget that can be focused. pub trait Focusable { diff --git a/core/src/widget/operation/text_input.rs b/core/src/widget/operation/text_input.rs index a46f1a2d..efb2a4d3 100644 --- a/core/src/widget/operation/text_input.rs +++ b/core/src/widget/operation/text_input.rs @@ -1,7 +1,7 @@ //! Operate on widgets that have text input. -use crate::widget::operation::Operation; -use crate::widget::Id; use crate::Rectangle; +use crate::widget::Id; +use crate::widget::operation::Operation; /// The internal state of a widget that has text input. pub trait TextInput { diff --git a/core/src/widget/text.rs b/core/src/widget/text.rs index c7ec3c8b..9a00fcdb 100644 --- a/core/src/widget/text.rs +++ b/core/src/widget/text.rs @@ -304,7 +304,7 @@ where let size = size.unwrap_or_else(|| renderer.default_size()); let font = font.unwrap_or_else(|| renderer.default_font()); - let State(ref mut paragraph) = state; + let State(paragraph) = state; paragraph.update(text::Text { content, diff --git a/core/src/window/settings.rs b/core/src/window/settings.rs index 9432eaaa..94bcfd78 100644 --- a/core/src/window/settings.rs +++ b/core/src/window/settings.rs @@ -24,8 +24,8 @@ mod platform; #[path = "settings/other.rs"] mod platform; -use crate::window::{Icon, Level, Position}; use crate::Size; +use crate::window::{Icon, Level, Position}; pub use platform::PlatformSpecific; diff --git a/examples/arc/Cargo.toml b/examples/arc/Cargo.toml index 5012ff82..f62b98ea 100644 --- a/examples/arc/Cargo.toml +++ b/examples/arc/Cargo.toml @@ -2,7 +2,7 @@ name = "arc" version = "0.1.0" authors = ["ThatsNoMoon <git@thatsnomoon.dev>"] -edition = "2021" +edition = "2024" publish = false [dependencies] diff --git a/examples/arc/src/main.rs b/examples/arc/src/main.rs index 88544caa..f63b82d0 100644 --- a/examples/arc/src/main.rs +++ b/examples/arc/src/main.rs @@ -2,7 +2,7 @@ use std::{f32::consts::PI, time::Instant}; use iced::mouse; use iced::widget::canvas::{ - self, stroke, Cache, Canvas, Geometry, Path, Stroke, + self, Cache, Canvas, Geometry, Path, Stroke, stroke, }; use iced::window; use iced::{Element, Fill, Point, Rectangle, Renderer, Subscription, Theme}; diff --git a/examples/bezier_tool/Cargo.toml b/examples/bezier_tool/Cargo.toml index e5624097..91ceb467 100644 --- a/examples/bezier_tool/Cargo.toml +++ b/examples/bezier_tool/Cargo.toml @@ -2,7 +2,7 @@ name = "bezier_tool" version = "0.1.0" authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"] -edition = "2021" +edition = "2024" publish = false [dependencies] diff --git a/examples/changelog/Cargo.toml b/examples/changelog/Cargo.toml index 6e314947..9bc56280 100644 --- a/examples/changelog/Cargo.toml +++ b/examples/changelog/Cargo.toml @@ -2,7 +2,7 @@ name = "changelog" version = "0.1.0" authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"] -edition = "2021" +edition = "2024" publish = false [lints.clippy] diff --git a/examples/checkbox/Cargo.toml b/examples/checkbox/Cargo.toml index 1e027c4c..46637670 100644 --- a/examples/checkbox/Cargo.toml +++ b/examples/checkbox/Cargo.toml @@ -2,7 +2,7 @@ name = "checkbox" version = "0.1.0" authors = ["Casper Rogild Storm<casper@rogildstorm.com>"] -edition = "2021" +edition = "2024" publish = false [dependencies] diff --git a/examples/clock/Cargo.toml b/examples/clock/Cargo.toml index bc6c202b..d134c92d 100644 --- a/examples/clock/Cargo.toml +++ b/examples/clock/Cargo.toml @@ -2,7 +2,7 @@ name = "clock" version = "0.1.0" authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"] -edition = "2021" +edition = "2024" publish = false [dependencies] diff --git a/examples/clock/src/main.rs b/examples/clock/src/main.rs index 0810594f..fde0c188 100644 --- a/examples/clock/src/main.rs +++ b/examples/clock/src/main.rs @@ -1,10 +1,10 @@ +use iced::alignment; use iced::mouse; use iced::time::{self, milliseconds}; -use iced::widget::canvas::{stroke, Cache, Geometry, LineCap, Path, Stroke}; +use iced::widget::canvas::{Cache, Geometry, LineCap, Path, Stroke, stroke}; use iced::widget::{canvas, container}; -use iced::{alignment, Radians}; use iced::{ - Degrees, Element, Fill, Font, Point, Rectangle, Renderer, Size, + Degrees, Element, Fill, Font, Point, Radians, Rectangle, Renderer, Size, Subscription, Theme, Vector, }; diff --git a/examples/color_palette/Cargo.toml b/examples/color_palette/Cargo.toml index bf9bff19..27d67f55 100644 --- a/examples/color_palette/Cargo.toml +++ b/examples/color_palette/Cargo.toml @@ -2,7 +2,7 @@ name = "color_palette" version = "0.1.0" authors = ["Clark Moody <clark@clarkmoody.com>"] -edition = "2021" +edition = "2024" publish = false [dependencies] diff --git a/examples/color_palette/src/main.rs b/examples/color_palette/src/main.rs index 1a86b168..c7bc6fb8 100644 --- a/examples/color_palette/src/main.rs +++ b/examples/color_palette/src/main.rs @@ -1,12 +1,12 @@ use iced::alignment; use iced::mouse; use iced::widget::canvas::{self, Canvas, Frame, Geometry, Path}; -use iced::widget::{column, row, text, Slider}; +use iced::widget::{Slider, column, row, text}; use iced::{ Center, Color, Element, Fill, Font, Pixels, Point, Rectangle, Renderer, Size, Vector, }; -use palette::{convert::FromColor, rgb::Rgb, Darken, Hsl, Lighten, ShiftHue}; +use palette::{Darken, Hsl, Lighten, ShiftHue, convert::FromColor, rgb::Rgb}; use std::marker::PhantomData; use std::ops::RangeInclusive; diff --git a/examples/combo_box/Cargo.toml b/examples/combo_box/Cargo.toml index 0f5ecf2a..04084c61 100644 --- a/examples/combo_box/Cargo.toml +++ b/examples/combo_box/Cargo.toml @@ -2,7 +2,7 @@ name = "combo_box" version = "0.1.0" authors = ["Joao Freitas <jhff.15@gmail.com>"] -edition = "2021" +edition = "2024" publish = false [dependencies] diff --git a/examples/counter/Cargo.toml b/examples/counter/Cargo.toml index 02eac329..7d88a745 100644 --- a/examples/counter/Cargo.toml +++ b/examples/counter/Cargo.toml @@ -2,7 +2,7 @@ name = "counter" version = "0.1.0" authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"] -edition = "2021" +edition = "2024" publish = false [dependencies] diff --git a/examples/counter/src/main.rs b/examples/counter/src/main.rs index 18bb8cfe..8f5f9754 100644 --- a/examples/counter/src/main.rs +++ b/examples/counter/src/main.rs @@ -1,5 +1,5 @@ -use iced::widget::{button, column, text, Column}; use iced::Center; +use iced::widget::{Column, button, column, text}; pub fn main() -> iced::Result { iced::run("A cool counter", Counter::update, Counter::view) @@ -43,7 +43,7 @@ impl Counter { mod tests { use super::*; use iced_test::selector::text; - use iced_test::{simulator, Error}; + use iced_test::{Error, simulator}; #[test] fn it_counts() -> Result<(), Error> { diff --git a/examples/custom_quad/Cargo.toml b/examples/custom_quad/Cargo.toml index 31b5055d..3fc42549 100644 --- a/examples/custom_quad/Cargo.toml +++ b/examples/custom_quad/Cargo.toml @@ -2,7 +2,7 @@ name = "custom_quad" version = "0.1.0" authors = ["Robert Krahn"] -edition = "2021" +edition = "2024" publish = false [dependencies] diff --git a/examples/custom_shader/Cargo.toml b/examples/custom_shader/Cargo.toml index 7f14b8c1..f5a129c7 100644 --- a/examples/custom_shader/Cargo.toml +++ b/examples/custom_shader/Cargo.toml @@ -2,7 +2,7 @@ name = "custom_shader" version = "0.1.0" authors = ["Bingus <shankern@protonmail.com>"] -edition = "2021" +edition = "2024" [dependencies] iced.workspace = true diff --git a/examples/custom_shader/src/scene/pipeline/cube.rs b/examples/custom_shader/src/scene/pipeline/cube.rs index de8bad6c..5f6eb9c5 100644 --- a/examples/custom_shader/src/scene/pipeline/cube.rs +++ b/examples/custom_shader/src/scene/pipeline/cube.rs @@ -1,8 +1,8 @@ use crate::scene::pipeline::Vertex; use crate::wgpu; -use glam::{vec2, vec3, Vec3}; -use rand::{thread_rng, Rng}; +use glam::{Vec3, vec2, vec3}; +use rand::{Rng, thread_rng}; /// A single instance of a cube. #[derive(Debug, Clone)] diff --git a/examples/custom_widget/Cargo.toml b/examples/custom_widget/Cargo.toml index 1e94bc52..6a23bd8f 100644 --- a/examples/custom_widget/Cargo.toml +++ b/examples/custom_widget/Cargo.toml @@ -2,7 +2,7 @@ name = "custom_widget" version = "0.1.0" authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"] -edition = "2021" +edition = "2024" publish = false [dependencies] diff --git a/examples/download_progress/Cargo.toml b/examples/download_progress/Cargo.toml index 8632c8b8..9c52b2bd 100644 --- a/examples/download_progress/Cargo.toml +++ b/examples/download_progress/Cargo.toml @@ -2,7 +2,7 @@ name = "download_progress" version = "0.1.0" authors = ["Songtronix <contact@songtronix.com>", "Folyd <lyshuhow@gmail.com>"] -edition = "2021" +edition = "2024" publish = false [dependencies] diff --git a/examples/download_progress/src/download.rs b/examples/download_progress/src/download.rs index 5b81f7a2..0c1a0d2e 100644 --- a/examples/download_progress/src/download.rs +++ b/examples/download_progress/src/download.rs @@ -1,10 +1,10 @@ use iced::futures::StreamExt; -use iced::task::{sipper, Straw}; +use iced::task::{Straw, sipper}; use std::sync::Arc; pub fn download(url: impl AsRef<str>) -> impl Straw<(), Progress, Error> { - sipper(move |mut progress| async move { + sipper(async move |mut progress| { let response = reqwest::get(url.as_ref()).await?; let total = response.content_length().ok_or(Error::NoContentLength)?; diff --git a/examples/download_progress/src/main.rs b/examples/download_progress/src/main.rs index 8082eccd..0ba8a297 100644 --- a/examples/download_progress/src/main.rs +++ b/examples/download_progress/src/main.rs @@ -3,7 +3,7 @@ mod download; use download::download; use iced::task; -use iced::widget::{button, center, column, progress_bar, text, Column}; +use iced::widget::{Column, button, center, column, progress_bar, text}; use iced::{Center, Element, Function, Right, Task}; pub fn main() -> iced::Result { diff --git a/examples/editor/Cargo.toml b/examples/editor/Cargo.toml index dc885728..598d8f28 100644 --- a/examples/editor/Cargo.toml +++ b/examples/editor/Cargo.toml @@ -2,7 +2,7 @@ name = "editor" version = "0.1.0" authors = ["Héctor Ramón Jiménez <hector@hecrj.dev>"] -edition = "2021" +edition = "2024" publish = false [dependencies] diff --git a/examples/events/Cargo.toml b/examples/events/Cargo.toml index 87315a10..776ed77b 100644 --- a/examples/events/Cargo.toml +++ b/examples/events/Cargo.toml @@ -2,7 +2,7 @@ name = "events" version = "0.1.0" authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"] -edition = "2021" +edition = "2024" publish = false [dependencies] diff --git a/examples/events/src/main.rs b/examples/events/src/main.rs index 5bada9b5..a7d98912 100644 --- a/examples/events/src/main.rs +++ b/examples/events/src/main.rs @@ -1,5 +1,5 @@ use iced::event::{self, Event}; -use iced::widget::{button, center, checkbox, text, Column}; +use iced::widget::{Column, button, center, checkbox, text}; use iced::window; use iced::{Center, Element, Fill, Subscription, Task}; diff --git a/examples/exit/Cargo.toml b/examples/exit/Cargo.toml index b06fbadc..d4ca12ac 100644 --- a/examples/exit/Cargo.toml +++ b/examples/exit/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "exit" version = "0.1.0" -edition = "2021" +edition = "2024" publish = false [dependencies] diff --git a/examples/ferris/Cargo.toml b/examples/ferris/Cargo.toml index e98341d2..c515005b 100644 --- a/examples/ferris/Cargo.toml +++ b/examples/ferris/Cargo.toml @@ -2,7 +2,7 @@ name = "ferris" version = "0.1.0" authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"] -edition = "2021" +edition = "2024" publish = false [dependencies] diff --git a/examples/gallery/Cargo.toml b/examples/gallery/Cargo.toml index 6e8aba06..5161f368 100644 --- a/examples/gallery/Cargo.toml +++ b/examples/gallery/Cargo.toml @@ -2,7 +2,7 @@ name = "gallery" version = "0.1.0" authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"] -edition = "2021" +edition = "2024" publish = false [dependencies] diff --git a/examples/gallery/src/civitai.rs b/examples/gallery/src/civitai.rs index 04589030..1102acae 100644 --- a/examples/gallery/src/civitai.rs +++ b/examples/gallery/src/civitai.rs @@ -1,6 +1,6 @@ use bytes::Bytes; use serde::Deserialize; -use sipper::{sipper, Straw}; +use sipper::{Straw, sipper}; use tokio::task; use std::fmt; @@ -62,7 +62,7 @@ impl Image { } pub fn download(self, size: Size) -> impl Straw<Rgba, Blurhash, Error> { - sipper(move |mut sender| async move { + sipper(async move |mut sender| { let client = reqwest::Client::new(); if let Size::Thumbnail { width, height } = size { diff --git a/examples/gallery/src/main.rs b/examples/gallery/src/main.rs index abafaf2d..caa11016 100644 --- a/examples/gallery/src/main.rs +++ b/examples/gallery/src/main.rs @@ -7,15 +7,15 @@ mod civitai; use crate::civitai::{Error, Id, Image, Rgba, Size}; use iced::animation; -use iced::time::{milliseconds, Instant}; +use iced::time::{Instant, milliseconds}; use iced::widget::{ button, center_x, container, horizontal_space, image, mouse_area, opaque, pop, row, scrollable, stack, }; use iced::window; use iced::{ - color, Animation, ContentFit, Element, Fill, Function, Subscription, Task, - Theme, + Animation, ContentFit, Element, Fill, Function, Subscription, Task, Theme, + color, }; use std::collections::HashMap; diff --git a/examples/game_of_life/Cargo.toml b/examples/game_of_life/Cargo.toml index 7596844c..3e5f8161 100644 --- a/examples/game_of_life/Cargo.toml +++ b/examples/game_of_life/Cargo.toml @@ -2,7 +2,7 @@ name = "game_of_life" version = "0.1.0" authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"] -edition = "2021" +edition = "2024" publish = false [dependencies] diff --git a/examples/game_of_life/src/main.rs b/examples/game_of_life/src/main.rs index 9516f832..d652347b 100644 --- a/examples/game_of_life/src/main.rs +++ b/examples/game_of_life/src/main.rs @@ -196,7 +196,6 @@ mod grid { Color, Element, Fill, Point, Rectangle, Renderer, Size, Theme, Vector, }; use rustc_hash::{FxHashMap, FxHashSet}; - use std::future::Future; use std::ops::RangeInclusive; pub struct Grid { @@ -261,7 +260,7 @@ mod grid { pub fn tick( &mut self, amount: usize, - ) -> Option<impl Future<Output = Message>> { + ) -> Option<impl Future<Output = Message> + use<>> { let tick = self.state.tick(amount)?; self.last_queued_ticks = amount; @@ -722,7 +721,8 @@ mod grid { fn tick( &mut self, amount: usize, - ) -> Option<impl Future<Output = Result<Life, TickError>>> { + ) -> Option<impl Future<Output = Result<Life, TickError>> + use<>> + { if self.is_ticking { return None; } diff --git a/examples/geometry/Cargo.toml b/examples/geometry/Cargo.toml index 9606dcb3..1e31e438 100644 --- a/examples/geometry/Cargo.toml +++ b/examples/geometry/Cargo.toml @@ -2,7 +2,7 @@ name = "geometry" version = "0.1.0" authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"] -edition = "2021" +edition = "2024" publish = false [dependencies] diff --git a/examples/geometry/src/main.rs b/examples/geometry/src/main.rs index 44214c63..0255cdfb 100644 --- a/examples/geometry/src/main.rs +++ b/examples/geometry/src/main.rs @@ -47,10 +47,10 @@ mod rainbow { cursor: mouse::Cursor, _viewport: &Rectangle, ) { + use iced::advanced::Renderer as _; use iced::advanced::graphics::mesh::{ self, Mesh, Renderer as _, SolidVertex2D, }; - use iced::advanced::Renderer as _; let bounds = layout.bounds(); @@ -152,8 +152,8 @@ mod rainbow { } } -use iced::widget::{center_x, center_y, column, scrollable}; use iced::Element; +use iced::widget::{center_x, center_y, column, scrollable}; use rainbow::rainbow; pub fn main() -> iced::Result { diff --git a/examples/gradient/Cargo.toml b/examples/gradient/Cargo.toml index 8102b866..7c368659 100644 --- a/examples/gradient/Cargo.toml +++ b/examples/gradient/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "gradient" version = "0.1.0" -edition = "2021" +edition = "2024" publish = false [dependencies] diff --git a/examples/gradient/src/main.rs b/examples/gradient/src/main.rs index 428ef6fb..c103389a 100644 --- a/examples/gradient/src/main.rs +++ b/examples/gradient/src/main.rs @@ -3,7 +3,7 @@ use iced::theme; use iced::widget::{ checkbox, column, container, horizontal_space, row, slider, text, }; -use iced::{color, Center, Color, Element, Fill, Radians, Theme}; +use iced::{Center, Color, Element, Fill, Radians, Theme, color}; pub fn main() -> iced::Result { tracing_subscriber::fmt::init(); diff --git a/examples/integration/Cargo.toml b/examples/integration/Cargo.toml index 7f8feb3f..3bdf9408 100644 --- a/examples/integration/Cargo.toml +++ b/examples/integration/Cargo.toml @@ -2,7 +2,7 @@ name = "integration" version = "0.1.0" authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"] -edition = "2021" +edition = "2024" publish = false [dependencies] diff --git a/examples/integration/src/main.rs b/examples/integration/src/main.rs index 87a5b22b..386e0f70 100644 --- a/examples/integration/src/main.rs +++ b/examples/integration/src/main.rs @@ -5,16 +5,16 @@ use controls::Controls; use scene::Scene; use iced_wgpu::graphics::Viewport; -use iced_wgpu::{wgpu, Engine, Renderer}; +use iced_wgpu::{Engine, Renderer, wgpu}; +use iced_winit::Clipboard; use iced_winit::conversion; use iced_winit::core::mouse; use iced_winit::core::renderer; use iced_winit::core::{Color, Font, Pixels, Size, Theme}; use iced_winit::futures; -use iced_winit::runtime::program; use iced_winit::runtime::Debug; +use iced_winit::runtime::program; use iced_winit::winit; -use iced_winit::Clipboard; use winit::{ event::WindowEvent, diff --git a/examples/layout/Cargo.toml b/examples/layout/Cargo.toml index 855f98d0..22fd7218 100644 --- a/examples/layout/Cargo.toml +++ b/examples/layout/Cargo.toml @@ -2,7 +2,7 @@ name = "layout" version = "0.1.0" authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"] -edition = "2021" +edition = "2024" publish = false [dependencies] diff --git a/examples/layout/src/main.rs b/examples/layout/src/main.rs index b298dce4..979a8c30 100644 --- a/examples/layout/src/main.rs +++ b/examples/layout/src/main.rs @@ -7,8 +7,8 @@ use iced::widget::{ text, vertical_rule, }; use iced::{ - color, Center, Element, Fill, Font, Length, Point, Rectangle, Renderer, - Shrink, Subscription, Theme, + Center, Element, Fill, Font, Length, Point, Rectangle, Renderer, Shrink, + Subscription, Theme, color, }; pub fn main() -> iced::Result { diff --git a/examples/lazy/Cargo.toml b/examples/lazy/Cargo.toml index 4ccb9584..f9264aa5 100644 --- a/examples/lazy/Cargo.toml +++ b/examples/lazy/Cargo.toml @@ -2,7 +2,7 @@ name = "lazy" version = "0.1.0" authors = ["Nick Senger <dev@nsenger.com>"] -edition = "2021" +edition = "2024" publish = false [dependencies] diff --git a/examples/loading_spinners/Cargo.toml b/examples/loading_spinners/Cargo.toml index abd28aec..a4566134 100644 --- a/examples/loading_spinners/Cargo.toml +++ b/examples/loading_spinners/Cargo.toml @@ -2,7 +2,7 @@ name = "loading_spinners" version = "0.1.0" authors = ["Nick Senger <dev@nsenger.com>"] -edition = "2021" +edition = "2024" publish = false [dependencies] diff --git a/examples/loading_spinners/src/easing.rs b/examples/loading_spinners/src/easing.rs index 8caf282d..374695a2 100644 --- a/examples/loading_spinners/src/easing.rs +++ b/examples/loading_spinners/src/easing.rs @@ -1,7 +1,7 @@ use iced::Point; use lyon_algorithms::measure::PathMeasurements; -use lyon_algorithms::path::{builder::NoAttributes, path::BuilderImpl, Path}; +use lyon_algorithms::path::{Path, builder::NoAttributes, path::BuilderImpl}; use std::sync::LazyLock; diff --git a/examples/loupe/Cargo.toml b/examples/loupe/Cargo.toml index 466905ba..2bd7fbdc 100644 --- a/examples/loupe/Cargo.toml +++ b/examples/loupe/Cargo.toml @@ -2,7 +2,7 @@ name = "loupe" version = "0.1.0" authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"] -edition = "2021" +edition = "2024" publish = false [dependencies] diff --git a/examples/loupe/src/main.rs b/examples/loupe/src/main.rs index 6b7d053a..3dde6872 100644 --- a/examples/loupe/src/main.rs +++ b/examples/loupe/src/main.rs @@ -46,10 +46,10 @@ impl Loupe { } mod loupe { + use iced::advanced::Renderer as _; use iced::advanced::layout::{self, Layout}; use iced::advanced::renderer; use iced::advanced::widget::{self, Widget}; - use iced::advanced::Renderer as _; use iced::mouse; use iced::{ Color, Element, Length, Rectangle, Renderer, Size, Theme, diff --git a/examples/markdown/Cargo.toml b/examples/markdown/Cargo.toml index 7af1741b..1b582e80 100644 --- a/examples/markdown/Cargo.toml +++ b/examples/markdown/Cargo.toml @@ -2,7 +2,7 @@ name = "markdown" version = "0.1.0" authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"] -edition = "2021" +edition = "2024" publish = false [dependencies] diff --git a/examples/markdown/src/icon.rs b/examples/markdown/src/icon.rs index cfe32541..eaae7587 100644 --- a/examples/markdown/src/icon.rs +++ b/examples/markdown/src/icon.rs @@ -1,8 +1,8 @@ // Generated automatically by iced_fontello at build time. // Do not edit manually. Source: ../fonts/markdown-icons.toml // dcd2f0c969d603e2ee9237a4b70fa86b1a6e84d86f4689046d8fdd10440b06b9 -use iced::widget::{text, Text}; use iced::Font; +use iced::widget::{Text, text}; pub const FONT: &[u8] = include_bytes!("../fonts/markdown-icons.ttf"); diff --git a/examples/markdown/src/main.rs b/examples/markdown/src/main.rs index c6360359..38a56c6b 100644 --- a/examples/markdown/src/main.rs +++ b/examples/markdown/src/main.rs @@ -3,7 +3,7 @@ mod icon; use iced::animation; use iced::clipboard; use iced::highlighter; -use iced::time::{self, milliseconds, Instant}; +use iced::time::{self, Instant, milliseconds}; use iced::widget::{ self, button, center_x, container, horizontal_space, hover, image, markdown, pop, right, row, scrollable, text_editor, toggler, diff --git a/examples/modal/Cargo.toml b/examples/modal/Cargo.toml index 009d9653..240a2504 100644 --- a/examples/modal/Cargo.toml +++ b/examples/modal/Cargo.toml @@ -2,7 +2,7 @@ name = "modal" version = "0.1.0" authors = ["tarkah <admin@tarkah.dev>"] -edition = "2021" +edition = "2024" publish = false [dependencies] diff --git a/examples/multi_window/Cargo.toml b/examples/multi_window/Cargo.toml index 3f89417f..738f4ba1 100644 --- a/examples/multi_window/Cargo.toml +++ b/examples/multi_window/Cargo.toml @@ -2,7 +2,7 @@ name = "multi_window" version = "0.1.0" authors = ["Bingus <shankern@protonmail.com>"] -edition = "2021" +edition = "2024" publish = false [dependencies] diff --git a/examples/multitouch/Cargo.toml b/examples/multitouch/Cargo.toml index e0d14f58..908af97f 100644 --- a/examples/multitouch/Cargo.toml +++ b/examples/multitouch/Cargo.toml @@ -2,7 +2,7 @@ name = "multitouch" version = "0.1.0" authors = ["Artur Sapek <artur@kraken.com>"] -edition = "2021" +edition = "2024" publish = false [dependencies] diff --git a/examples/pane_grid/Cargo.toml b/examples/pane_grid/Cargo.toml index 095ecd10..fd3e133c 100644 --- a/examples/pane_grid/Cargo.toml +++ b/examples/pane_grid/Cargo.toml @@ -2,7 +2,7 @@ name = "pane_grid" version = "0.1.0" authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"] -edition = "2021" +edition = "2024" publish = false [dependencies] diff --git a/examples/pick_list/Cargo.toml b/examples/pick_list/Cargo.toml index 030558e7..16440f12 100644 --- a/examples/pick_list/Cargo.toml +++ b/examples/pick_list/Cargo.toml @@ -2,7 +2,7 @@ name = "pick_list" version = "0.1.0" authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"] -edition = "2021" +edition = "2024" publish = false [dependencies] diff --git a/examples/pokedex/Cargo.toml b/examples/pokedex/Cargo.toml index b3be4e14..4913e7a0 100644 --- a/examples/pokedex/Cargo.toml +++ b/examples/pokedex/Cargo.toml @@ -2,7 +2,7 @@ name = "pokedex" version = "0.1.0" authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"] -edition = "2021" +edition = "2024" publish = false [dependencies] diff --git a/examples/progress_bar/Cargo.toml b/examples/progress_bar/Cargo.toml index 6624ae15..831587d2 100644 --- a/examples/progress_bar/Cargo.toml +++ b/examples/progress_bar/Cargo.toml @@ -2,7 +2,7 @@ name = "progress_bar" version = "0.1.0" authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"] -edition = "2021" +edition = "2024" publish = false [dependencies] diff --git a/examples/progress_bar/src/main.rs b/examples/progress_bar/src/main.rs index e431a404..07e07f14 100644 --- a/examples/progress_bar/src/main.rs +++ b/examples/progress_bar/src/main.rs @@ -1,8 +1,8 @@ +use iced::Element; use iced::widget::{ center, center_x, checkbox, column, progress_bar, row, slider, vertical_slider, }; -use iced::Element; pub fn main() -> iced::Result { iced::run("Progress Bar - Iced", Progress::update, Progress::view) diff --git a/examples/qr_code/Cargo.toml b/examples/qr_code/Cargo.toml index 8f33ea8c..cb3f9289 100644 --- a/examples/qr_code/Cargo.toml +++ b/examples/qr_code/Cargo.toml @@ -2,7 +2,7 @@ name = "qr_code" version = "0.1.0" authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"] -edition = "2021" +edition = "2024" publish = false [dependencies] diff --git a/examples/screenshot/Cargo.toml b/examples/screenshot/Cargo.toml index 77b108bd..cbea961f 100644 --- a/examples/screenshot/Cargo.toml +++ b/examples/screenshot/Cargo.toml @@ -2,7 +2,7 @@ name = "screenshot" version = "0.1.0" authors = ["Bingus <shankern@protonmail.com>"] -edition = "2021" +edition = "2024" publish = false [dependencies] diff --git a/examples/scrollable/Cargo.toml b/examples/scrollable/Cargo.toml index ba291520..23f4bc2d 100644 --- a/examples/scrollable/Cargo.toml +++ b/examples/scrollable/Cargo.toml @@ -2,7 +2,7 @@ name = "scrollable" version = "0.1.0" authors = ["Clark Moody <clark@clarkmoody.com>"] -edition = "2021" +edition = "2024" publish = false [dependencies] diff --git a/examples/slider/Cargo.toml b/examples/slider/Cargo.toml index 05e74d2c..8a2745dc 100644 --- a/examples/slider/Cargo.toml +++ b/examples/slider/Cargo.toml @@ -2,7 +2,7 @@ name = "slider" version = "0.1.0" authors = ["Casper Rogild Storm<casper@rogildstorm.com>"] -edition = "2021" +edition = "2024" publish = false [dependencies] diff --git a/examples/solar_system/Cargo.toml b/examples/solar_system/Cargo.toml index e2c18c50..b73a9f34 100644 --- a/examples/solar_system/Cargo.toml +++ b/examples/solar_system/Cargo.toml @@ -2,7 +2,7 @@ name = "solar_system" version = "0.1.0" authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"] -edition = "2021" +edition = "2024" publish = false [dependencies] diff --git a/examples/stopwatch/Cargo.toml b/examples/stopwatch/Cargo.toml index 6b1419f6..93985968 100644 --- a/examples/stopwatch/Cargo.toml +++ b/examples/stopwatch/Cargo.toml @@ -2,7 +2,7 @@ name = "stopwatch" version = "0.1.0" authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"] -edition = "2021" +edition = "2024" publish = false [dependencies] diff --git a/examples/stopwatch/src/main.rs b/examples/stopwatch/src/main.rs index a814da55..5055216f 100644 --- a/examples/stopwatch/src/main.rs +++ b/examples/stopwatch/src/main.rs @@ -1,5 +1,5 @@ use iced::keyboard; -use iced::time::{self, milliseconds, Duration, Instant}; +use iced::time::{self, Duration, Instant, milliseconds}; use iced::widget::{button, center, column, row, text}; use iced::{Center, Element, Subscription, Theme}; diff --git a/examples/styling/Cargo.toml b/examples/styling/Cargo.toml index c8a90258..75cc520d 100644 --- a/examples/styling/Cargo.toml +++ b/examples/styling/Cargo.toml @@ -2,7 +2,7 @@ name = "styling" version = "0.1.0" authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"] -edition = "2021" +edition = "2024" publish = false [dependencies] diff --git a/examples/svg/Cargo.toml b/examples/svg/Cargo.toml index 78208fb0..b8a54817 100644 --- a/examples/svg/Cargo.toml +++ b/examples/svg/Cargo.toml @@ -2,7 +2,7 @@ name = "svg" version = "0.1.0" authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"] -edition = "2021" +edition = "2024" publish = false [dependencies] diff --git a/examples/svg/src/main.rs b/examples/svg/src/main.rs index c4be8fb8..14d8f164 100644 --- a/examples/svg/src/main.rs +++ b/examples/svg/src/main.rs @@ -1,5 +1,5 @@ use iced::widget::{center, center_x, checkbox, column, svg}; -use iced::{color, Element, Fill}; +use iced::{Element, Fill, color}; pub fn main() -> iced::Result { iced::run("SVG - Iced", Tiger::update, Tiger::view) diff --git a/examples/system_information/Cargo.toml b/examples/system_information/Cargo.toml index 41903122..55e00d59 100644 --- a/examples/system_information/Cargo.toml +++ b/examples/system_information/Cargo.toml @@ -2,7 +2,7 @@ name = "system_information" version = "0.1.0" authors = ["Richard <richardsoncusto@gmail.com>"] -edition = "2021" +edition = "2024" publish = false [dependencies] diff --git a/examples/system_information/src/main.rs b/examples/system_information/src/main.rs index 56f934b7..27980c9b 100644 --- a/examples/system_information/src/main.rs +++ b/examples/system_information/src/main.rs @@ -1,5 +1,5 @@ use iced::widget::{button, center, column, text}; -use iced::{system, Element, Task}; +use iced::{Element, Task, system}; pub fn main() -> iced::Result { iced::application( diff --git a/examples/the_matrix/Cargo.toml b/examples/the_matrix/Cargo.toml index 775e76e0..5dc3dbe0 100644 --- a/examples/the_matrix/Cargo.toml +++ b/examples/the_matrix/Cargo.toml @@ -2,7 +2,7 @@ name = "the_matrix" version = "0.1.0" authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"] -edition = "2021" +edition = "2024" publish = false [dependencies] diff --git a/examples/the_matrix/src/main.rs b/examples/the_matrix/src/main.rs index 315e9ee5..53e268c1 100644 --- a/examples/the_matrix/src/main.rs +++ b/examples/the_matrix/src/main.rs @@ -1,5 +1,5 @@ use iced::mouse; -use iced::time::{self, milliseconds, Instant}; +use iced::time::{self, Instant, milliseconds}; use iced::widget::canvas; use iced::{ Color, Element, Fill, Font, Point, Rectangle, Renderer, Subscription, Theme, @@ -55,8 +55,8 @@ impl<Message> canvas::Program<Message> for TheMatrix { bounds: Rectangle, _cursor: mouse::Cursor, ) -> Vec<canvas::Geometry> { - use rand::distributions::Distribution; use rand::Rng; + use rand::distributions::Distribution; const CELL_SIZE: f32 = 10.0; diff --git a/examples/toast/Cargo.toml b/examples/toast/Cargo.toml index 113313e2..3410fb7d 100644 --- a/examples/toast/Cargo.toml +++ b/examples/toast/Cargo.toml @@ -2,7 +2,7 @@ name = "toast" version = "0.1.0" authors = ["tarkah <admin@tarkah.dev>"] -edition = "2021" +edition = "2024" publish = false [dependencies] diff --git a/examples/todos/Cargo.toml b/examples/todos/Cargo.toml index 2b49e4e9..77b776d5 100644 --- a/examples/todos/Cargo.toml +++ b/examples/todos/Cargo.toml @@ -2,7 +2,7 @@ name = "todos" version = "0.1.0" authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"] -edition = "2021" +edition = "2024" publish = false [dependencies] diff --git a/examples/todos/src/main.rs b/examples/todos/src/main.rs index 033cb122..65a34c64 100644 --- a/examples/todos/src/main.rs +++ b/examples/todos/src/main.rs @@ -1,7 +1,7 @@ use iced::keyboard; use iced::widget::{ - self, button, center, center_x, checkbox, column, keyed_column, row, - scrollable, text, text_input, Text, + self, Text, button, center, center_x, checkbox, column, keyed_column, row, + scrollable, text, text_input, }; use iced::window; use iced::{ diff --git a/examples/tooltip/Cargo.toml b/examples/tooltip/Cargo.toml index 57bb0dcb..95b88e0d 100644 --- a/examples/tooltip/Cargo.toml +++ b/examples/tooltip/Cargo.toml @@ -2,7 +2,7 @@ name = "tooltip" version = "0.1.0" authors = ["Yusuf Bera Ertan <y.bera003.06@protonmail.com>"] -edition = "2021" +edition = "2024" publish = false [dependencies] diff --git a/examples/tooltip/src/main.rs b/examples/tooltip/src/main.rs index f48f688a..9e4e7cbe 100644 --- a/examples/tooltip/src/main.rs +++ b/examples/tooltip/src/main.rs @@ -1,6 +1,6 @@ +use iced::Element; use iced::widget::tooltip::Position; use iced::widget::{button, center, container, tooltip}; -use iced::Element; pub fn main() -> iced::Result { iced::run("Tooltip - Iced", Tooltip::update, Tooltip::view) diff --git a/examples/tour/Cargo.toml b/examples/tour/Cargo.toml index 719d355f..0666e768 100644 --- a/examples/tour/Cargo.toml +++ b/examples/tour/Cargo.toml @@ -2,7 +2,7 @@ name = "tour" version = "0.1.0" authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"] -edition = "2021" +edition = "2024" publish = false [dependencies] diff --git a/examples/tour/src/main.rs b/examples/tour/src/main.rs index 2ca1df44..2f8421d7 100644 --- a/examples/tour/src/main.rs +++ b/examples/tour/src/main.rs @@ -1,8 +1,8 @@ +use iced::widget::{Button, Column, Container, Slider}; use iced::widget::{ button, center_x, center_y, checkbox, column, horizontal_space, image, radio, row, scrollable, slider, text, text_input, toggler, vertical_space, }; -use iced::widget::{Button, Column, Container, Slider}; use iced::{Center, Color, Element, Fill, Font, Pixels}; pub fn main() -> iced::Result { diff --git a/examples/url_handler/Cargo.toml b/examples/url_handler/Cargo.toml index 7bb9914b..1b15d9ab 100644 --- a/examples/url_handler/Cargo.toml +++ b/examples/url_handler/Cargo.toml @@ -2,7 +2,7 @@ name = "url_handler" version = "0.1.0" authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"] -edition = "2021" +edition = "2024" publish = false [dependencies] diff --git a/examples/vectorial_text/Cargo.toml b/examples/vectorial_text/Cargo.toml index 76c1af7c..4f43bf1a 100644 --- a/examples/vectorial_text/Cargo.toml +++ b/examples/vectorial_text/Cargo.toml @@ -2,7 +2,7 @@ name = "vectorial_text" version = "0.1.0" authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"] -edition = "2021" +edition = "2024" publish = false [dependencies] diff --git a/examples/visible_bounds/Cargo.toml b/examples/visible_bounds/Cargo.toml index 1193334d..a11af963 100644 --- a/examples/visible_bounds/Cargo.toml +++ b/examples/visible_bounds/Cargo.toml @@ -2,7 +2,7 @@ name = "visible_bounds" version = "0.1.0" authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"] -edition = "2021" +edition = "2024" publish = false [dependencies] diff --git a/examples/websocket/Cargo.toml b/examples/websocket/Cargo.toml index 787dbbe1..88ebdae1 100644 --- a/examples/websocket/Cargo.toml +++ b/examples/websocket/Cargo.toml @@ -2,7 +2,7 @@ name = "websocket" version = "1.0.0" authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"] -edition = "2021" +edition = "2024" publish = false [dependencies] diff --git a/examples/websocket/src/echo.rs b/examples/websocket/src/echo.rs index 149a260c..1116d1ea 100644 --- a/examples/websocket/src/echo.rs +++ b/examples/websocket/src/echo.rs @@ -1,7 +1,7 @@ pub mod server; use iced::futures; -use iced::task::{sipper, Never, Sipper}; +use iced::task::{Never, Sipper, sipper}; use iced::widget::text; use futures::channel::mpsc; @@ -12,7 +12,7 @@ use async_tungstenite::tungstenite; use std::fmt; pub fn connect() -> impl Sipper<Never, Event> { - sipper(|mut output| async move { + sipper(async |mut output| { loop { const ECHO_SERVER: &str = "ws://127.0.0.1:3030"; diff --git a/examples/websocket/src/echo/server.rs b/examples/websocket/src/echo/server.rs index a696a7a4..1bb313b4 100644 --- a/examples/websocket/src/echo/server.rs +++ b/examples/websocket/src/echo/server.rs @@ -2,8 +2,8 @@ use iced::futures; use futures::channel::mpsc; use futures::{SinkExt, StreamExt}; -use warp::ws::WebSocket; use warp::Filter; +use warp::ws::WebSocket; // Basic WebSocket echo server adapted from: // https://github.com/seanmonstar/warp/blob/3ff2eaf41eb5ac9321620e5a6434d5b5ec6f313f/examples/websockets_chat.rs diff --git a/examples/websocket/src/main.rs b/examples/websocket/src/main.rs index ae658471..b918c479 100644 --- a/examples/websocket/src/main.rs +++ b/examples/websocket/src/main.rs @@ -3,7 +3,7 @@ mod echo; use iced::widget::{ self, button, center, column, row, scrollable, text, text_input, }; -use iced::{color, Center, Element, Fill, Subscription, Task}; +use iced::{Center, Element, Fill, Subscription, Task, color}; use std::sync::LazyLock; pub fn main() -> iced::Result { diff --git a/futures/src/backend/native/async_std.rs b/futures/src/backend/native/async_std.rs index 86714f45..be258b26 100644 --- a/futures/src/backend/native/async_std.rs +++ b/futures/src/backend/native/async_std.rs @@ -1,5 +1,4 @@ //! An `async-std` backend. -use futures::Future; /// An `async-std` executor. #[derive(Debug)] diff --git a/futures/src/backend/native/smol.rs b/futures/src/backend/native/smol.rs index 8d448e7f..9ac6a27d 100644 --- a/futures/src/backend/native/smol.rs +++ b/futures/src/backend/native/smol.rs @@ -1,5 +1,4 @@ //! A `smol` backend. -use futures::Future; /// A `smol` executor. #[derive(Debug)] diff --git a/futures/src/backend/native/thread_pool.rs b/futures/src/backend/native/thread_pool.rs index c96f2682..a90cc53a 100644 --- a/futures/src/backend/native/thread_pool.rs +++ b/futures/src/backend/native/thread_pool.rs @@ -1,5 +1,4 @@ //! A `ThreadPool` backend. -use futures::Future; /// A thread pool executor for futures. pub type Executor = futures::executor::ThreadPool; diff --git a/futures/src/backend/native/tokio.rs b/futures/src/backend/native/tokio.rs index c38ef566..911d788c 100644 --- a/futures/src/backend/native/tokio.rs +++ b/futures/src/backend/native/tokio.rs @@ -1,5 +1,4 @@ //! A `tokio` backend. -use futures::Future; /// A `tokio` executor. pub type Executor = tokio::runtime::Runtime; @@ -22,12 +21,11 @@ impl crate::Executor for Executor { pub mod time { //! Listen and react to time. + use crate::MaybeSend; use crate::core::time::{Duration, Instant}; use crate::subscription::Subscription; - use crate::MaybeSend; use futures::stream; - use std::future::Future; /// Returns a [`Subscription`] that produces messages at a set interval. /// diff --git a/futures/src/backend/null.rs b/futures/src/backend/null.rs index 609b8b3f..f31415b9 100644 --- a/futures/src/backend/null.rs +++ b/futures/src/backend/null.rs @@ -1,5 +1,4 @@ //! A backend that does nothing! -use futures::Future; /// An executor that drops all the futures, instead of spawning them. #[derive(Debug)] diff --git a/futures/src/event.rs b/futures/src/event.rs index 72ea78ad..bd75d82c 100644 --- a/futures/src/event.rs +++ b/futures/src/event.rs @@ -1,8 +1,8 @@ //! Listen to runtime events. +use crate::MaybeSend; use crate::core::event::{self, Event}; use crate::core::window; use crate::subscription::{self, Subscription}; -use crate::MaybeSend; /// Returns a [`Subscription`] to all the ignored runtime events. /// diff --git a/futures/src/executor.rs b/futures/src/executor.rs index 3b0d4af1..9c14a2c9 100644 --- a/futures/src/executor.rs +++ b/futures/src/executor.rs @@ -1,8 +1,6 @@ //! Choose your preferred executor to power a runtime. use crate::MaybeSend; -use futures::Future; - /// A type that can run futures. pub trait Executor: Sized { /// Creates a new [`Executor`]. diff --git a/futures/src/keyboard.rs b/futures/src/keyboard.rs index 35f6b6fa..036edb9c 100644 --- a/futures/src/keyboard.rs +++ b/futures/src/keyboard.rs @@ -1,9 +1,9 @@ //! Listen to keyboard events. +use crate::MaybeSend; use crate::core; use crate::core::event; use crate::core::keyboard::{Event, Key, Modifiers}; use crate::subscription::{self, Subscription}; -use crate::MaybeSend; /// Listens to keyboard key presses and calls the given function /// to map them into actual messages. diff --git a/futures/src/runtime.rs b/futures/src/runtime.rs index 157e2c67..0f30b469 100644 --- a/futures/src/runtime.rs +++ b/futures/src/runtime.rs @@ -2,7 +2,7 @@ use crate::subscription; use crate::{BoxFuture, BoxStream, Executor, MaybeSend}; -use futures::{channel::mpsc, Sink}; +use futures::{Sink, channel::mpsc}; use std::marker::PhantomData; /// A batteries-included runtime of commands and subscriptions. diff --git a/futures/src/stream.rs b/futures/src/stream.rs index af2f8c99..ee9c0c14 100644 --- a/futures/src/stream.rs +++ b/futures/src/stream.rs @@ -2,21 +2,16 @@ use futures::channel::mpsc; use futures::stream::{self, Stream, StreamExt}; -use std::future::Future; - /// Creates a new [`Stream`] that produces the items sent from a [`Future`] /// to the [`mpsc::Sender`] provided to the closure. /// /// This is a more ergonomic [`stream::unfold`], which allows you to go /// from the "world of futures" to the "world of streams" by simply looping /// and publishing to an async channel from inside a [`Future`]. -pub fn channel<T, F>( +pub fn channel<T>( size: usize, - f: impl FnOnce(mpsc::Sender<T>) -> F, -) -> impl Stream<Item = T> -where - F: Future<Output = ()>, -{ + f: impl AsyncFnOnce(mpsc::Sender<T>), +) -> impl Stream<Item = T> { let (sender, receiver) = mpsc::channel(size); let runner = stream::once(f(sender)).filter_map(|_| async { None }); @@ -26,13 +21,10 @@ where /// Creates a new [`Stream`] that produces the items sent from a [`Future`] /// that can fail to the [`mpsc::Sender`] provided to the closure. -pub fn try_channel<T, E, F>( +pub fn try_channel<T, E>( size: usize, - f: impl FnOnce(mpsc::Sender<T>) -> F, -) -> impl Stream<Item = Result<T, E>> -where - F: Future<Output = Result<(), E>>, -{ + f: impl AsyncFnOnce(mpsc::Sender<T>) -> Result<(), E>, +) -> impl Stream<Item = Result<T, E>> { let (sender, receiver) = mpsc::channel(size); let runner = stream::once(f(sender)).filter_map(|result| async { diff --git a/futures/src/subscription.rs b/futures/src/subscription.rs index 3577d19f..f799d5f8 100644 --- a/futures/src/subscription.rs +++ b/futures/src/subscription.rs @@ -161,7 +161,7 @@ impl<T> Subscription<T> { /// } /// /// fn some_worker() -> impl Stream<Item = Event> { - /// stream::channel(100, |mut output| async move { + /// stream::channel(100, async |mut output| { /// // Create channel /// let (sender, mut receiver) = mpsc::channel(100); /// diff --git a/graphics/src/compositor.rs b/graphics/src/compositor.rs index 0b862bdb..df3d41c3 100644 --- a/graphics/src/compositor.rs +++ b/graphics/src/compositor.rs @@ -8,7 +8,6 @@ use raw_window_handle::{HasDisplayHandle, HasWindowHandle}; use thiserror::Error; use std::borrow::Cow; -use std::future::Future; /// A graphics compositor that can draw to windows. pub trait Compositor: Sized { @@ -120,9 +119,7 @@ pub trait Default { #[derive(Clone, PartialEq, Eq, Debug, Error)] pub enum SurfaceError { /// A timeout was encountered while trying to acquire the next frame. - #[error( - "A timeout was encountered while trying to acquire the next frame" - )] + #[error("A timeout was encountered while trying to acquire the next frame")] Timeout, /// The underlying surface has changed, and therefore the surface must be updated. #[error( diff --git a/graphics/src/geometry/path/builder.rs b/graphics/src/geometry/path/builder.rs index 44410f6d..e814a3a7 100644 --- a/graphics/src/geometry/path/builder.rs +++ b/graphics/src/geometry/path/builder.rs @@ -1,4 +1,4 @@ -use crate::geometry::path::{arc, Arc, Path}; +use crate::geometry::path::{Arc, Path, arc}; use crate::core::border; use crate::core::{Point, Radians, Size}; @@ -171,8 +171,12 @@ impl Builder { radius: border::Radius, ) { let min_size = (size.height / 2.0).min(size.width / 2.0); - let [top_left_corner, top_right_corner, bottom_right_corner, bottom_left_corner] = - radius.into(); + let [ + top_left_corner, + top_right_corner, + bottom_right_corner, + bottom_left_corner, + ] = radius.into(); self.move_to(Point::new( top_left.x + min_size.min(top_left_corner), diff --git a/graphics/src/image.rs b/graphics/src/image.rs index 67a5e0cf..171edd80 100644 --- a/graphics/src/image.rs +++ b/graphics/src/image.rs @@ -2,9 +2,9 @@ #[cfg(feature = "image")] pub use ::image as image_rs; +use crate::core::Rectangle; use crate::core::image; use crate::core::svg; -use crate::core::Rectangle; /// A raster or vector image. #[derive(Debug, Clone, PartialEq)] diff --git a/graphics/src/settings.rs b/graphics/src/settings.rs index 2e8275c6..118ed73b 100644 --- a/graphics/src/settings.rs +++ b/graphics/src/settings.rs @@ -1,5 +1,5 @@ -use crate::core::{Font, Pixels}; use crate::Antialiasing; +use crate::core::{Font, Pixels}; /// The settings of a renderer. #[derive(Debug, Clone, Copy, PartialEq)] diff --git a/highlighter/src/lib.rs b/highlighter/src/lib.rs index 2d0ac2e4..982f1279 100644 --- a/highlighter/src/lib.rs +++ b/highlighter/src/lib.rs @@ -1,9 +1,9 @@ //! A syntax highlighter for iced. use iced_core as core; +use crate::core::Color; use crate::core::font::{self, Font}; use crate::core::text::highlighter::{self, Format}; -use crate::core::Color; use std::ops::Range; use std::sync::LazyLock; diff --git a/renderer/src/fallback.rs b/renderer/src/fallback.rs index 52b8317f..82fc74ed 100644 --- a/renderer/src/fallback.rs +++ b/renderer/src/fallback.rs @@ -74,10 +74,10 @@ impl<A, B> core::text::Renderer for Renderer<A, B> where A: core::text::Renderer, B: core::text::Renderer< - Font = A::Font, - Paragraph = A::Paragraph, - Editor = A::Editor, - >, + Font = A::Font, + Paragraph = A::Paragraph, + Editor = A::Editor, + >, { type Font = A::Font; type Paragraph = A::Paragraph; diff --git a/runtime/src/font.rs b/runtime/src/font.rs index 75fdfc11..2d73566d 100644 --- a/runtime/src/font.rs +++ b/runtime/src/font.rs @@ -1,6 +1,6 @@ //! Load and use fonts. -use crate::task::{self, Task}; use crate::Action; +use crate::task::{self, Task}; use std::borrow::Cow; /// An error while loading a font. diff --git a/runtime/src/multi_window/program.rs b/runtime/src/multi_window/program.rs index e8c71b26..4ea44791 100644 --- a/runtime/src/multi_window/program.rs +++ b/runtime/src/multi_window/program.rs @@ -1,8 +1,8 @@ //! Build interactive programs using The Elm Architecture. +use crate::Task; use crate::core::text; use crate::core::window; use crate::core::{Element, Renderer}; -use crate::Task; /// The core of a user interface for a multi-window application following The Elm Architecture. pub trait Program: Sized { diff --git a/runtime/src/program.rs b/runtime/src/program.rs index 77acf497..964157db 100644 --- a/runtime/src/program.rs +++ b/runtime/src/program.rs @@ -1,8 +1,8 @@ //! Build interactive programs using The Elm Architecture. use crate::Task; -use iced_core::text; use iced_core::Element; +use iced_core::text; mod state; diff --git a/runtime/src/task.rs b/runtime/src/task.rs index 022483f7..710be5d9 100644 --- a/runtime/src/task.rs +++ b/runtime/src/task.rs @@ -1,17 +1,16 @@ //! Create runtime tasks. +use crate::Action; use crate::core::widget; use crate::futures::futures::channel::mpsc; use crate::futures::futures::channel::oneshot; use crate::futures::futures::future::{self, FutureExt}; use crate::futures::futures::stream::{self, Stream, StreamExt}; -use crate::futures::{boxed_stream, BoxStream, MaybeSend}; -use crate::Action; +use crate::futures::{BoxStream, MaybeSend, boxed_stream}; -use std::future::Future; use std::sync::Arc; #[doc(no_inline)] -pub use sipper::{sipper, stream, Never, Sender, Sipper, Straw}; +pub use sipper::{Never, Sender, Sipper, Straw, sipper, stream}; /// A set of concurrent actions to be performed by the iced runtime. /// diff --git a/runtime/src/window.rs b/runtime/src/window.rs index 183fab97..ccd8721b 100644 --- a/runtime/src/window.rs +++ b/runtime/src/window.rs @@ -5,9 +5,9 @@ use crate::core::window::{ UserAttention, }; use crate::core::{Point, Size}; +use crate::futures::Subscription; use crate::futures::event; use crate::futures::futures::channel::oneshot; -use crate::futures::Subscription; use crate::task::{self, Task}; pub use raw_window_handle; diff --git a/rustfmt.toml b/rustfmt.toml index 501828b4..dccc2a06 100644 --- a/rustfmt.toml +++ b/rustfmt.toml @@ -1,2 +1,2 @@ max_width=80 -edition="2021" +edition="2024" diff --git a/src/advanced.rs b/src/advanced.rs index 843b381a..ac88776e 100644 --- a/src/advanced.rs +++ b/src/advanced.rs @@ -2,8 +2,8 @@ pub mod subscription { //! Write your own subscriptions. pub use crate::runtime::futures::subscription::{ - from_recipe, into_recipes, Event, EventStream, Hasher, MacOS, - PlatformSpecific, Recipe, + Event, EventStream, Hasher, MacOS, PlatformSpecific, Recipe, + from_recipe, into_recipes, }; } @@ -13,6 +13,7 @@ pub mod widget { pub use crate::runtime::task::widget as operate; } +pub use crate::core::Shell; pub use crate::core::clipboard::{self, Clipboard}; pub use crate::core::image; pub use crate::core::layout::{self, Layout}; @@ -21,6 +22,5 @@ pub use crate::core::overlay::{self, Overlay}; pub use crate::core::renderer::{self, Renderer}; pub use crate::core::svg; pub use crate::core::text::{self, Text}; -pub use crate::core::Shell; pub use crate::renderer::graphics; pub use widget::Widget; @@ -505,22 +505,22 @@ pub use crate::core::gradient; pub use crate::core::padding; pub use crate::core::theme; pub use crate::core::{ - never, Alignment, Animation, Background, Border, Color, ContentFit, - Degrees, Function, Gradient, Length, Padding, Pixels, Point, Radians, - Rectangle, Rotation, Settings, Shadow, Size, Theme, Transformation, Vector, + Alignment, Animation, Background, Border, Color, ContentFit, Degrees, + Function, Gradient, Length, Padding, Pixels, Point, Radians, Rectangle, + Rotation, Settings, Shadow, Size, Theme, Transformation, Vector, never, }; pub use crate::runtime::exit; pub use iced_futures::Subscription; -pub use alignment::Horizontal::{Left, Right}; -pub use alignment::Vertical::{Bottom, Top}; pub use Alignment::Center; pub use Length::{Fill, FillPortion, Shrink}; +pub use alignment::Horizontal::{Left, Right}; +pub use alignment::Vertical::{Bottom, Top}; pub mod task { //! Create runtime tasks. pub use crate::runtime::task::{ - sipper, stream, Handle, Never, Sipper, Straw, Task, + Handle, Never, Sipper, Straw, Task, sipper, stream, }; } @@ -683,7 +683,7 @@ pub fn run<State, Message, Theme, Renderer>( title: impl application::Title<State> + 'static, update: impl application::Update<State, Message> + 'static, view: impl for<'a> application::View<'a, State, Message, Theme, Renderer> - + 'static, + + 'static, ) -> Result where State: Default + 'static, diff --git a/test/src/lib.rs b/test/src/lib.rs index 73726f08..982cc2c1 100644 --- a/test/src/lib.rs +++ b/test/src/lib.rs @@ -105,8 +105,8 @@ use crate::core::window; use crate::core::{ Element, Event, Font, Point, Rectangle, Settings, Size, SmolStr, }; -use crate::runtime::user_interface; use crate::runtime::UserInterface; +use crate::runtime::user_interface; use std::borrow::Cow; use std::fs; @@ -459,7 +459,9 @@ where } /// Turns the [`Simulator`] into the sequence of messages produced by any interactions. - pub fn into_messages(self) -> impl Iterator<Item = Message> { + pub fn into_messages( + self, + ) -> impl Iterator<Item = Message> + use<Message, Theme, Renderer> { self.messages.into_iter() } } diff --git a/tiny_skia/src/engine.rs b/tiny_skia/src/engine.rs index 196c36cf..c1c02376 100644 --- a/tiny_skia/src/engine.rs +++ b/tiny_skia/src/engine.rs @@ -1,10 +1,10 @@ +use crate::Primitive; use crate::core::renderer::Quad; use crate::core::{ Background, Color, Gradient, Rectangle, Size, Transformation, Vector, }; use crate::graphics::{Image, Text}; use crate::text; -use crate::Primitive; #[derive(Debug)] pub struct Engine { diff --git a/tiny_skia/src/geometry.rs b/tiny_skia/src/geometry.rs index 681bf25d..dbdff444 100644 --- a/tiny_skia/src/geometry.rs +++ b/tiny_skia/src/geometry.rs @@ -1,3 +1,4 @@ +use crate::Primitive; use crate::core::text::LineHeight; use crate::core::{self, Pixels, Point, Radians, Rectangle, Size, Svg, Vector}; use crate::graphics::cache::{self, Cached}; @@ -5,7 +6,6 @@ use crate::graphics::geometry::fill::{self, Fill}; use crate::graphics::geometry::stroke::{self, Stroke}; use crate::graphics::geometry::{self, Path, Style}; use crate::graphics::{self, Gradient, Image, Text}; -use crate::Primitive; use std::rc::Rc; diff --git a/tiny_skia/src/layer.rs b/tiny_skia/src/layer.rs index bdfd4d38..444efb84 100644 --- a/tiny_skia/src/layer.rs +++ b/tiny_skia/src/layer.rs @@ -1,3 +1,4 @@ +use crate::Primitive; use crate::core::renderer::Quad; use crate::core::{ self, Background, Color, Point, Rectangle, Svg, Transformation, @@ -6,7 +7,6 @@ use crate::graphics::damage; use crate::graphics::layer; use crate::graphics::text::{Editor, Paragraph, Text}; use crate::graphics::{self, Image}; -use crate::Primitive; use std::rc::Rc; diff --git a/tiny_skia/src/lib.rs b/tiny_skia/src/lib.rs index a42f1de4..b73eb842 100644 --- a/tiny_skia/src/lib.rs +++ b/tiny_skia/src/lib.rs @@ -32,9 +32,9 @@ use crate::core::{ Background, Color, Font, Pixels, Point, Rectangle, Size, Transformation, }; use crate::engine::Engine; +use crate::graphics::Viewport; use crate::graphics::compositor; use crate::graphics::text::{Editor, Paragraph}; -use crate::graphics::Viewport; /// A [`tiny-skia`] graphics renderer for [`iced`]. /// diff --git a/wgpu/src/geometry.rs b/wgpu/src/geometry.rs index d2ffda53..8d161015 100644 --- a/wgpu/src/geometry.rs +++ b/wgpu/src/geometry.rs @@ -713,7 +713,7 @@ fn into_fill_rule(rule: fill::Rule) -> lyon::tessellation::FillRule { pub(super) fn dashed(path: &Path, line_dash: LineDash<'_>) -> Path { use lyon::algorithms::walk::{ - walk_along_path, RepeatedPattern, WalkerEvent, + RepeatedPattern, WalkerEvent, walk_along_path, }; use lyon::path::iterator::PathIterator; diff --git a/wgpu/src/image/mod.rs b/wgpu/src/image/mod.rs index caac0813..6cb18a07 100644 --- a/wgpu/src/image/mod.rs +++ b/wgpu/src/image/mod.rs @@ -9,8 +9,8 @@ mod raster; #[cfg(feature = "svg")] mod vector; -use crate::core::{Rectangle, Size, Transformation}; use crate::Buffer; +use crate::core::{Rectangle, Size, Transformation}; use bytemuck::{Pod, Zeroable}; diff --git a/wgpu/src/image/raster.rs b/wgpu/src/image/raster.rs index 4d3c3125..83777807 100644 --- a/wgpu/src/image/raster.rs +++ b/wgpu/src/image/raster.rs @@ -1,5 +1,5 @@ -use crate::core::image; use crate::core::Size; +use crate::core::image; use crate::graphics; use crate::graphics::image::image_rs; use crate::image::atlas::{self, Atlas}; diff --git a/wgpu/src/layer.rs b/wgpu/src/layer.rs index 68d5a015..2255b3f2 100644 --- a/wgpu/src/layer.rs +++ b/wgpu/src/layer.rs @@ -1,11 +1,11 @@ use crate::core::{ - self, renderer, Background, Color, Point, Rectangle, Svg, Transformation, + self, Background, Color, Point, Rectangle, Svg, Transformation, renderer, }; use crate::graphics; +use crate::graphics::Mesh; use crate::graphics::color; use crate::graphics::layer; use crate::graphics::text::{Editor, Paragraph}; -use crate::graphics::Mesh; use crate::image::{self, Image}; use crate::primitive::{self, Primitive}; use crate::quad::{self, Quad}; diff --git a/wgpu/src/lib.rs b/wgpu/src/lib.rs index b1998da7..2ef9992c 100644 --- a/wgpu/src/lib.rs +++ b/wgpu/src/lib.rs @@ -64,8 +64,8 @@ use crate::core::{ Background, Color, Font, Pixels, Point, Rectangle, Size, Transformation, Vector, }; -use crate::graphics::text::{Editor, Paragraph}; use crate::graphics::Viewport; +use crate::graphics::text::{Editor, Paragraph}; /// A [`wgpu`] graphics renderer for [`iced`]. /// @@ -403,9 +403,9 @@ impl Renderer { overlay: &[impl AsRef<str>], viewport: &Viewport, ) { + use crate::core::Renderer as _; use crate::core::alignment; use crate::core::text::Renderer as _; - use crate::core::Renderer as _; self.with_layer( Rectangle::with_size(viewport.logical_size()), diff --git a/wgpu/src/quad/gradient.rs b/wgpu/src/quad/gradient.rs index 3d4ca4db..68c11157 100644 --- a/wgpu/src/quad/gradient.rs +++ b/wgpu/src/quad/gradient.rs @@ -1,6 +1,6 @@ +use crate::Buffer; use crate::graphics::gradient; use crate::quad::{self, Quad}; -use crate::Buffer; use bytemuck::{Pod, Zeroable}; use std::ops::Range; diff --git a/wgpu/src/quad/solid.rs b/wgpu/src/quad/solid.rs index f3e85ce7..b6d88486 100644 --- a/wgpu/src/quad/solid.rs +++ b/wgpu/src/quad/solid.rs @@ -1,6 +1,6 @@ +use crate::Buffer; use crate::graphics::color; use crate::quad::{self, Quad}; -use crate::Buffer; use bytemuck::{Pod, Zeroable}; use std::ops::Range; diff --git a/wgpu/src/text.rs b/wgpu/src/text.rs index 591bc0b7..33fbd4dc 100644 --- a/wgpu/src/text.rs +++ b/wgpu/src/text.rs @@ -3,7 +3,7 @@ use crate::core::{Rectangle, Size, Transformation}; use crate::graphics::cache; use crate::graphics::color; use crate::graphics::text::cache::{self as text_cache, Cache as BufferCache}; -use crate::graphics::text::{font_system, to_color, Editor, Paragraph}; +use crate::graphics::text::{Editor, Paragraph, font_system, to_color}; use rustc_hash::FxHashMap; use std::collections::hash_map; diff --git a/wgpu/src/triangle.rs b/wgpu/src/triangle.rs index ab88be3b..a2b976ea 100644 --- a/wgpu/src/triangle.rs +++ b/wgpu/src/triangle.rs @@ -1,10 +1,10 @@ //! Draw meshes of triangles. mod msaa; +use crate::Buffer; use crate::core::{Rectangle, Size, Transformation}; -use crate::graphics::mesh::{self, Mesh}; use crate::graphics::Antialiasing; -use crate::Buffer; +use crate::graphics::mesh::{self, Mesh}; use rustc_hash::FxHashMap; use std::collections::hash_map; @@ -644,10 +644,10 @@ impl Uniforms { } mod solid { - use crate::graphics::mesh; + use crate::Buffer; use crate::graphics::Antialiasing; + use crate::graphics::mesh; use crate::triangle; - use crate::Buffer; #[derive(Debug)] pub struct Pipeline { @@ -795,11 +795,11 @@ mod solid { } mod gradient { + use crate::Buffer; + use crate::graphics::Antialiasing; use crate::graphics::color; use crate::graphics::mesh; - use crate::graphics::Antialiasing; use crate::triangle; - use crate::Buffer; #[derive(Debug)] pub struct Pipeline { diff --git a/widget/src/button.rs b/widget/src/button.rs index 0e24328f..1b51065d 100644 --- a/widget/src/button.rs +++ b/widget/src/button.rs @@ -23,8 +23,8 @@ use crate::core::overlay; use crate::core::renderer; use crate::core::theme::palette; use crate::core::touch; -use crate::core::widget::tree::{self, Tree}; use crate::core::widget::Operation; +use crate::core::widget::tree::{self, Tree}; use crate::core::window; use crate::core::{ Background, Clipboard, Color, Element, Event, Layout, Length, Padding, diff --git a/widget/src/canvas.rs b/widget/src/canvas.rs index 046abddf..50acade5 100644 --- a/widget/src/canvas.rs +++ b/widget/src/canvas.rs @@ -52,13 +52,13 @@ mod program; pub use program::Program; +pub use crate::Action; pub use crate::core::event::Event; pub use crate::graphics::cache::Group; pub use crate::graphics::geometry::{ - fill, gradient, path, stroke, Fill, Gradient, Image, LineCap, LineDash, - LineJoin, Path, Stroke, Style, Text, + Fill, Gradient, Image, LineCap, LineDash, LineJoin, Path, Stroke, Style, + Text, fill, gradient, path, stroke, }; -pub use crate::Action; use crate::core::event; use crate::core::layout::{self, Layout}; diff --git a/widget/src/canvas/program.rs b/widget/src/canvas/program.rs index 43446b64..9644f676 100644 --- a/widget/src/canvas/program.rs +++ b/widget/src/canvas/program.rs @@ -1,8 +1,8 @@ +use crate::Action; use crate::canvas::mouse; use crate::canvas::{Event, Geometry}; use crate::core::Rectangle; use crate::graphics::geometry; -use crate::Action; /// The state and logic of a [`Canvas`]. /// diff --git a/widget/src/container.rs b/widget/src/container.rs index 86c1c7a8..da5b436f 100644 --- a/widget/src/container.rs +++ b/widget/src/container.rs @@ -30,9 +30,9 @@ use crate::core::theme; use crate::core::widget::tree::{self, Tree}; use crate::core::widget::{self, Operation}; use crate::core::{ - self, color, Background, Clipboard, Color, Element, Event, Layout, Length, + self, Background, Clipboard, Color, Element, Event, Layout, Length, Padding, Pixels, Point, Rectangle, Shadow, Shell, Size, Theme, Vector, - Widget, + Widget, color, }; use crate::runtime::task::{self, Task}; diff --git a/widget/src/helpers.rs b/widget/src/helpers.rs index 42d0f499..118a2414 100644 --- a/widget/src/helpers.rs +++ b/widget/src/helpers.rs @@ -14,8 +14,8 @@ use crate::pick_list::{self, PickList}; use crate::progress_bar::{self, ProgressBar}; use crate::radio::{self, Radio}; use crate::rule::{self, Rule}; -use crate::runtime::task::{self, Task}; use crate::runtime::Action; +use crate::runtime::task::{self, Task}; use crate::scrollable::{self, Scrollable}; use crate::slider::{self, Slider}; use crate::text::{self, Text}; diff --git a/widget/src/keyed/column.rs b/widget/src/keyed/column.rs index 313b728a..3064a8c4 100644 --- a/widget/src/keyed/column.rs +++ b/widget/src/keyed/column.rs @@ -3,8 +3,8 @@ use crate::core::layout; use crate::core::mouse; use crate::core::overlay; use crate::core::renderer; -use crate::core::widget::tree::{self, Tree}; use crate::core::widget::Operation; +use crate::core::widget::tree::{self, Tree}; use crate::core::{ Alignment, Clipboard, Element, Event, Layout, Length, Padding, Pixels, Rectangle, Shell, Size, Vector, Widget, diff --git a/widget/src/lazy.rs b/widget/src/lazy.rs index 6df026de..8b7b38ce 100644 --- a/widget/src/lazy.rs +++ b/widget/src/lazy.rs @@ -10,13 +10,13 @@ pub use responsive::Responsive; mod cache; +use crate::core::Element; use crate::core::layout::{self, Layout}; use crate::core::mouse; use crate::core::overlay; use crate::core::renderer; use crate::core::widget::tree::{self, Tree}; use crate::core::widget::{self, Widget}; -use crate::core::Element; use crate::core::{ self, Clipboard, Event, Length, Point, Rectangle, Shell, Size, Vector, }; diff --git a/widget/src/lazy/cache.rs b/widget/src/lazy/cache.rs index b341c234..367eefda 100644 --- a/widget/src/lazy/cache.rs +++ b/widget/src/lazy/cache.rs @@ -1,6 +1,6 @@ #![allow(dead_code)] -use crate::core::overlay; use crate::core::Element; +use crate::core::overlay; use ouroboros::self_referencing; diff --git a/widget/src/markdown.rs b/widget/src/markdown.rs index ad4b81fe..d4de2a8c 100644 --- a/widget/src/markdown.rs +++ b/widget/src/markdown.rs @@ -48,7 +48,7 @@ use crate::core::font::{self, Font}; use crate::core::padding; use crate::core::theme; use crate::core::{ - self, color, Color, Element, Length, Padding, Pixels, Theme, + self, Color, Element, Length, Padding, Pixels, Theme, color, }; use crate::{column, container, rich_text, row, scrollable, span, text}; diff --git a/widget/src/mouse_area.rs b/widget/src/mouse_area.rs index c1c3ba0f..10976c76 100644 --- a/widget/src/mouse_area.rs +++ b/widget/src/mouse_area.rs @@ -4,7 +4,7 @@ use crate::core::mouse; use crate::core::overlay; use crate::core::renderer; use crate::core::touch; -use crate::core::widget::{tree, Operation, Tree}; +use crate::core::widget::{Operation, Tree, tree}; use crate::core::{ Clipboard, Element, Event, Layout, Length, Point, Rectangle, Shell, Size, Vector, Widget, diff --git a/widget/src/pane_grid.rs b/widget/src/pane_grid.rs index 3ae1dfc7..db93c724 100644 --- a/widget/src/pane_grid.rs +++ b/widget/src/pane_grid.rs @@ -463,7 +463,7 @@ where .filter(|(((pane, _), _), _)| { self.internal .maximized() - .map_or(true, |maximized| *pane == maximized) + .is_none_or(|maximized| *pane == maximized) }) .for_each(|(((_, content), state), layout)| { content.operate(state, layout, renderer, operation); @@ -503,7 +503,7 @@ where .filter(|(((pane, _), _), _)| { self.internal .maximized() - .map_or(true, |maximized| *pane == maximized) + .is_none_or(|maximized| *pane == maximized) }) { let is_picked = picked_pane == Some(pane); @@ -688,10 +688,10 @@ where .iter() .zip(&self.contents) .zip(layout.children()) - .filter(|((&pane, _content), _layout)| { + .filter(|((pane, _content), _layout)| { self.internal .maximized() - .map_or(true, |maximized| pane == maximized) + .is_none_or(|maximized| **pane == maximized) }) .find_map(|((_pane, content), layout)| { content.grid_interaction( @@ -738,7 +738,7 @@ where .filter(|(((pane, _), _), _)| { self.internal .maximized() - .map_or(true, |maximized| *pane == maximized) + .is_none_or(|maximized| *pane == maximized) }) .map(|(((_, content), tree), layout)| { content.mouse_interaction( @@ -846,7 +846,7 @@ where .filter(|(((pane, _), _), _)| { self.internal .maximized() - .map_or(true, |maximized| maximized == *pane) + .is_none_or(|maximized| maximized == *pane) }) { match picked_pane { diff --git a/widget/src/qr_code.rs b/widget/src/qr_code.rs index 458f3588..07bb0c50 100644 --- a/widget/src/qr_code.rs +++ b/widget/src/qr_code.rs @@ -20,6 +20,7 @@ //! qr_code(&state.data).into() //! } //! ``` +use crate::Renderer; use crate::canvas; use crate::core::layout; use crate::core::mouse; @@ -29,7 +30,6 @@ use crate::core::{ Color, Element, Layout, Length, Pixels, Point, Rectangle, Size, Theme, Vector, Widget, }; -use crate::Renderer; use std::cell::RefCell; use thiserror::Error; diff --git a/widget/src/scrollable.rs b/widget/src/scrollable.rs index 0cf75c04..0c876036 100644 --- a/widget/src/scrollable.rs +++ b/widget/src/scrollable.rs @@ -37,8 +37,8 @@ use crate::core::{ Length, Padding, Pixels, Point, Rectangle, Shell, Size, Theme, Vector, Widget, }; -use crate::runtime::task::{self, Task}; use crate::runtime::Action; +use crate::runtime::task::{self, Task}; pub use operation::scrollable::{AbsoluteOffset, RelativeOffset}; diff --git a/widget/src/shader.rs b/widget/src/shader.rs index 06254a1c..6d532e59 100644 --- a/widget/src/shader.rs +++ b/widget/src/shader.rs @@ -14,8 +14,8 @@ use crate::renderer::wgpu::primitive; use std::marker::PhantomData; -pub use crate::graphics::Viewport; pub use crate::Action; +pub use crate::graphics::Viewport; pub use primitive::{Primitive, Storage}; /// A widget which can render custom shaders with Iced's `wgpu` backend. diff --git a/widget/src/shader/program.rs b/widget/src/shader/program.rs index 81ecc9b1..bbea937c 100644 --- a/widget/src/shader/program.rs +++ b/widget/src/shader/program.rs @@ -1,5 +1,5 @@ -use crate::core::mouse; use crate::core::Rectangle; +use crate::core::mouse; use crate::renderer::wgpu::Primitive; use crate::shader::{self, Action}; diff --git a/widget/src/text_input.rs b/widget/src/text_input.rs index ae3dfe4c..697d0d64 100644 --- a/widget/src/text_input.rs +++ b/widget/src/text_input.rs @@ -60,8 +60,8 @@ use crate::core::{ Background, Border, Color, Element, Event, InputMethod, Layout, Length, Padding, Pixels, Point, Rectangle, Shell, Size, Theme, Vector, Widget, }; -use crate::runtime::task::{self, Task}; use crate::runtime::Action; +use crate::runtime::task::{self, Task}; /// A field that can be filled with text. /// diff --git a/widget/src/themer.rs b/widget/src/themer.rs index 4e583882..cf0845be 100644 --- a/widget/src/themer.rs +++ b/widget/src/themer.rs @@ -3,8 +3,8 @@ use crate::core::layout; use crate::core::mouse; use crate::core::overlay; use crate::core::renderer; -use crate::core::widget::tree::{self, Tree}; use crate::core::widget::Operation; +use crate::core::widget::tree::{self, Tree}; use crate::core::{ Background, Clipboard, Color, Element, Event, Layout, Length, Point, Rectangle, Shell, Size, Vector, Widget, diff --git a/widget/src/tooltip.rs b/widget/src/tooltip.rs index 5bebeeac..2d674bca 100644 --- a/widget/src/tooltip.rs +++ b/widget/src/tooltip.rs @@ -470,8 +470,10 @@ where layout::Node::with_children( tooltip_bounds.size(), - vec![tooltip_layout - .translate(Vector::new(self.padding, self.padding))], + vec![ + tooltip_layout + .translate(Vector::new(self.padding, self.padding)), + ], ) .translate(Vector::new(tooltip_bounds.x, tooltip_bounds.y)) } diff --git a/widget/src/vertical_slider.rs b/widget/src/vertical_slider.rs index 6f878fde..436c2345 100644 --- a/widget/src/vertical_slider.rs +++ b/widget/src/vertical_slider.rs @@ -31,7 +31,7 @@ use std::ops::RangeInclusive; pub use crate::slider::{ - default, Catalog, Handle, HandleShape, Status, Style, StyleFn, + Catalog, Handle, HandleShape, Status, Style, StyleFn, default, }; use crate::core::border::Border; @@ -393,9 +393,7 @@ where shell.capture_event(); } } - Event::Keyboard(keyboard::Event::KeyPressed { - ref key, .. - }) => { + Event::Keyboard(keyboard::Event::KeyPressed { key, .. }) => { if cursor.is_over(layout.bounds()) { match key { Key::Named(key::Named::ArrowUp) => { diff --git a/winit/src/program.rs b/winit/src/program.rs index 9a64fa51..c57c0b1b 100644 --- a/winit/src/program.rs +++ b/winit/src/program.rs @@ -20,9 +20,9 @@ use crate::futures::futures::{Future, StreamExt}; use crate::futures::subscription::{self, Subscription}; use crate::futures::{Executor, Runtime}; use crate::graphics; -use crate::graphics::{compositor, Compositor}; -use crate::runtime::user_interface::{self, UserInterface}; +use crate::graphics::{Compositor, compositor}; use crate::runtime::Debug; +use crate::runtime::user_interface::{self, UserInterface}; use crate::runtime::{self, Action, Task}; use crate::{Clipboard, Error, Proxy, Settings}; @@ -406,7 +406,9 @@ where .with_canvas(self.canvas.take()) }; - log::info!("Window attributes for id `{id:#?}`: {window_attributes:#?}"); + log::info!( + "Window attributes for id `{id:#?}`: {window_attributes:#?}" + ); // On macOS, the `position` in `WindowAttributes` represents the "inner" // position of the window; while on other platforms it's the "outer" position. diff --git a/winit/src/program/state.rs b/winit/src/program/state.rs index e883d04a..911e84fe 100644 --- a/winit/src/program/state.rs +++ b/winit/src/program/state.rs @@ -1,6 +1,6 @@ use crate::conversion; -use crate::core::{mouse, theme, window}; use crate::core::{Color, Size}; +use crate::core::{mouse, theme, window}; use crate::graphics::Viewport; use crate::program::Program; diff --git a/winit/src/proxy.rs b/winit/src/proxy.rs index d8ad8b3f..d8d3f4a2 100644 --- a/winit/src/proxy.rs +++ b/winit/src/proxy.rs @@ -1,8 +1,8 @@ use crate::futures::futures::{ + Future, Sink, StreamExt, channel::mpsc, select, task::{Context, Poll}, - Future, Sink, StreamExt, }; use crate::runtime::Action; use std::pin::Pin; |