Make sipper dependency optional

This commit is contained in:
Héctor Ramón Jiménez 2025-04-02 10:58:09 +02:00
parent cf827dd349
commit 9f1beba583
No known key found for this signature in database
GPG key ID: 7CC46565708259A7
8 changed files with 18 additions and 8 deletions

View file

@ -531,9 +531,10 @@ pub use alignment::Vertical::{Bottom, Top};
pub mod task {
//! Create runtime tasks.
pub use crate::runtime::task::{
Handle, Never, Sipper, Straw, Task, sipper, stream,
};
pub use crate::runtime::task::{Handle, Task};
#[cfg(feature = "sipper")]
pub use crate::runtime::task::{Never, Sipper, Straw, sipper, stream};
}
pub mod clipboard {