File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ futures-lite = { version = "2.0.0", optional = true }
8686async-process = { version = " 2.0.0" , optional = true }
8787
8888[target .'cfg(target_arch = "wasm32")' .dependencies ]
89- gloo-timers = { version = " 0.2.1 " , features = [" futures" ], optional = true }
89+ gloo-timers = { version = " 0.3.0 " , features = [" futures" ], optional = true }
9090wasm-bindgen-futures = { version = " 0.4.10" , optional = true }
9191futures-channel = { version = " 0.3.4" , optional = true }
9292
Original file line number Diff line number Diff line change 4040//! type Item;
4141//! fn poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>>;
4242//! }
43+ //! # impl Stream for () {
44+ //! # type Item = ();
45+ //! # fn poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> { Poll::Pending }
46+ //! # }
4347//! ```
4448//!
4549//! A stream has a method, [`next`], which when called, returns an
You can’t perform that action at this time.
0 commit comments