From 91af1c5ed65d75d9da62d29254460b5ed79f96eb Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Fri, 21 Feb 2025 01:28:47 +0100 Subject: Update all `examples` to Rust 2024 --- examples/stopwatch/Cargo.toml | 2 +- examples/stopwatch/src/main.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'examples/stopwatch') 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 "] -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}; -- cgit