summaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-07-05 02:15:13 +0200
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-07-05 02:16:45 +0200
commit8bc49cd88653309f5abe8a38d5a4af36fcfea933 (patch)
tree6c205ff9964cec1d48934b7ff166532491a349c5 /src/lib.rs
parente50aa03edc858d561992d8ca441aa063f273eeac (diff)
downloadiced-8bc49cd88653309f5abe8a38d5a4af36fcfea933.tar.gz
iced-8bc49cd88653309f5abe8a38d5a4af36fcfea933.tar.bz2
iced-8bc49cd88653309f5abe8a38d5a4af36fcfea933.zip
Hide `Subscription` internals
.. and introduce `stream::channel` helper
Diffstat (limited to '')
-rw-r--r--src/lib.rs10
1 files changed, 2 insertions, 8 deletions
diff --git a/src/lib.rs b/src/lib.rs
index bc3fe6ab..09d9860e 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -175,6 +175,7 @@ use iced_winit::core;
use iced_winit::runtime;
pub use iced_futures::futures;
+pub use iced_futures::stream;
#[cfg(feature = "highlighter")]
pub use iced_highlighter as highlighter;
@@ -202,6 +203,7 @@ pub use crate::core::{
Theme, Transformation, Vector,
};
pub use crate::runtime::{exit, Task};
+pub use iced_futures::Subscription;
pub mod clipboard {
//! Access the clipboard.
@@ -255,13 +257,6 @@ pub mod mouse {
};
}
-pub mod subscription {
- //! Listen to external events in your application.
- pub use iced_futures::subscription::{
- channel, run, run_with_id, unfold, Subscription,
- };
-}
-
#[cfg(feature = "system")]
pub mod system {
//! Retrieve system information.
@@ -314,7 +309,6 @@ pub use executor::Executor;
pub use font::Font;
pub use renderer::Renderer;
pub use settings::Settings;
-pub use subscription::Subscription;
#[doc(inline)]
pub use application::application;