summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLibravatar Héctor <hector@hecrj.dev>2025-02-21 19:21:10 +0100
committerLibravatar GitHub <noreply@github.com>2025-02-21 19:21:10 +0100
commitf1ed99cb47997e1d194a41e7cdf2846f8eb5f8fa (patch)
treeb2eeb7537ffd49bfbdd24c1a9580870eca99caa6 /src
parent81ca3d2a223d62fbb48b93dcea5409f6212605fa (diff)
parent800a73ddd7d4a2e0b1ed23ec565cbc6325b3b7f0 (diff)
downloadiced-f1ed99cb47997e1d194a41e7cdf2846f8eb5f8fa.tar.gz
iced-f1ed99cb47997e1d194a41e7cdf2846f8eb5f8fa.tar.bz2
iced-f1ed99cb47997e1d194a41e7cdf2846f8eb5f8fa.zip
Merge pull request #2809 from iced-rs/rust-2024
Update to Rust 2024
Diffstat (limited to 'src')
-rw-r--r--src/advanced.rs6
-rw-r--r--src/lib.rs14
2 files changed, 10 insertions, 10 deletions
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;
diff --git a/src/lib.rs b/src/lib.rs
index 441826d6..95820ed7 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -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,