diff options
author | 2025-02-21 01:28:47 +0100 | |
---|---|---|
committer | 2025-02-21 01:37:14 +0100 | |
commit | 91af1c5ed65d75d9da62d29254460b5ed79f96eb (patch) | |
tree | 4b05400d50e6a94e4f7049945c01fec2beffb2b2 | |
parent | 9ceb467e6e12129b42d67a4a1ff3cb21bc7daadd (diff) | |
download | iced-91af1c5ed65d75d9da62d29254460b5ed79f96eb.tar.gz iced-91af1c5ed65d75d9da62d29254460b5ed79f96eb.tar.bz2 iced-91af1c5ed65d75d9da62d29254460b5ed79f96eb.zip |
Update all `examples` to Rust 2024
82 files changed, 96 insertions, 95 deletions
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..01f1402d 100644 --- a/examples/clock/src/main.rs +++ b/examples/clock/src/main.rs @@ -1,12 +1,12 @@ 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, Subscription, Theme, Vector, }; +use iced::{Radians, alignment}; pub fn main() -> iced::Result { tracing_subscriber::fmt::init(); 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..95df5cbe 100644 --- a/examples/download_progress/src/download.rs +++ b/examples/download_progress/src/download.rs @@ -1,5 +1,5 @@ use iced::futures::StreamExt; -use iced::task::{sipper, Straw}; +use iced::task::{Straw, sipper}; use std::sync::Arc; 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..b529d619 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; 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..7cc4565a 100644 --- a/examples/game_of_life/src/main.rs +++ b/examples/game_of_life/src/main.rs @@ -261,7 +261,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 +722,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..0f14af94 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; 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/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" |