diff --git a/ntex-util/CHANGES.md b/ntex-util/CHANGES.md index 2cbd20cd..85a08a2d 100644 --- a/ntex-util/CHANGES.md +++ b/ntex-util/CHANGES.md @@ -1,5 +1,9 @@ # Changes +## [0.3.4] + +* Add UnwindSafe trait on mpsc::Receiver #239 + ## [0.3.3] - 2023-11-02 * Add FusedStream trait on mpsc::Receiver #235 diff --git a/ntex-util/src/channel/mpsc.rs b/ntex-util/src/channel/mpsc.rs index 6b089227..3962ac49 100644 --- a/ntex-util/src/channel/mpsc.rs +++ b/ntex-util/src/channel/mpsc.rs @@ -1,5 +1,7 @@ //! A multi-producer, single-consumer, futures-aware, FIFO queue. -use std::{collections::VecDeque, fmt, pin::Pin, task::Context, task::Poll}; +use std::{ + collections::VecDeque, fmt, panic::UnwindSafe, pin::Pin, task::Context, task::Poll, +}; use futures_core::{FusedStream, Stream}; use futures_sink::Sink; @@ -212,6 +214,8 @@ impl FusedStream for Receiver { } } +impl UnwindSafe for Receiver {} + impl Drop for Receiver { fn drop(&mut self) { let shared = self.shared.get_mut();