diff options
author | 2024-07-05 02:15:13 +0200 | |
---|---|---|
committer | 2024-07-05 02:16:45 +0200 | |
commit | 8bc49cd88653309f5abe8a38d5a4af36fcfea933 (patch) | |
tree | 6c205ff9964cec1d48934b7ff166532491a349c5 /futures/src/lib.rs | |
parent | e50aa03edc858d561992d8ca441aa063f273eeac (diff) | |
download | iced-8bc49cd88653309f5abe8a38d5a4af36fcfea933.tar.gz iced-8bc49cd88653309f5abe8a38d5a4af36fcfea933.tar.bz2 iced-8bc49cd88653309f5abe8a38d5a4af36fcfea933.zip |
Hide `Subscription` internals
.. and introduce `stream::channel` helper
Diffstat (limited to 'futures/src/lib.rs')
-rw-r--r-- | futures/src/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/futures/src/lib.rs b/futures/src/lib.rs index a874a618..31738823 100644 --- a/futures/src/lib.rs +++ b/futures/src/lib.rs @@ -15,6 +15,7 @@ pub mod backend; pub mod event; pub mod executor; pub mod keyboard; +pub mod stream; pub mod subscription; pub use executor::Executor; |