diff --git a/ntex-bytes/CHANGELOG.md b/ntex-bytes/CHANGELOG.md index d10c784f..f66d945d 100644 --- a/ntex-bytes/CHANGELOG.md +++ b/ntex-bytes/CHANGELOG.md @@ -1,5 +1,9 @@ # Changes +## [0.1.8] (2021-12-18) + +* Remove futures patch dependency + ## [0.1.7] (2021-12-06) * Fix dealloc for vec representation diff --git a/ntex-bytes/Cargo.toml b/ntex-bytes/Cargo.toml index 59ba37e2..21a23eed 100644 --- a/ntex-bytes/Cargo.toml +++ b/ntex-bytes/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ntex-bytes" -version = "0.1.7" +version = "0.1.8" license = "MIT" authors = ["Nikolay Kim ", "Carl Lerche "] description = "Types and traits for working with bytes (bytes crate fork)" diff --git a/ntex-codec/CHANGES.md b/ntex-codec/CHANGES.md index 29100ec9..1408c808 100644 --- a/ntex-codec/CHANGES.md +++ b/ntex-codec/CHANGES.md @@ -1,10 +1,10 @@ # Changes -## [0.6.0] - 2021-12-xx +## [0.6.0] - 2021-12-18 -* Removed Framed type +* Remove Framed type -* Removed tokio dependency +* Remove tokio dependency ## [0.5.1] - 2021-09-08 diff --git a/ntex-io/Cargo.toml b/ntex-io/Cargo.toml index d6101fac..b612e989 100644 --- a/ntex-io/Cargo.toml +++ b/ntex-io/Cargo.toml @@ -34,7 +34,7 @@ ntex-service = "0.2.1" log = "0.4" pin-project-lite = "0.2" -tok-io = { version = "1", package = "tokio", default-features = false, optional = true } +tok-io = { version = "1", package = "tokio", default-features = false, features = ["net", "rt"], optional = true } [dev-dependencies] ntex = "0.5.0-b.0" diff --git a/ntex-util/CHANGES.md b/ntex-util/CHANGES.md index 6377ce1c..2ff8996f 100644 --- a/ntex-util/CHANGES.md +++ b/ntex-util/CHANGES.md @@ -1,5 +1,9 @@ # Changes +## [0.1.3] - 2021-12-18 + +* move ntex::channel::mpsc + ## [0.1.2] - 2021-12-10 * move in ntex::time utils diff --git a/ntex-util/src/channel/cell.rs b/ntex-util/src/channel/cell.rs index ef6ecc60..4e5ca39b 100644 --- a/ntex-util/src/channel/cell.rs +++ b/ntex-util/src/channel/cell.rs @@ -1,6 +1,5 @@ //! Custom cell impl - -use std::{cell::UnsafeCell, fmt, rc::Rc}; +use std::{cell::UnsafeCell, fmt, rc::Rc, rc::Weak}; pub(super) struct Cell { inner: Rc>, @@ -39,4 +38,28 @@ impl Cell { pub(super) fn get_mut(&self) -> &mut T { unsafe { &mut *self.inner.as_ref().get() } } + + pub(super) fn downgrade(&self) -> WeakCell { + WeakCell { + inner: Rc::downgrade(&self.inner), + } + } +} + +pub(super) struct WeakCell { + inner: Weak>, +} + +impl Clone for WeakCell { + fn clone(&self) -> Self { + Self { + inner: self.inner.clone(), + } + } +} + +impl WeakCell { + pub(super) fn upgrade(&self) -> Option> { + self.inner.upgrade().map(|inner| Cell { inner }) + } } diff --git a/ntex-util/src/channel/mod.rs b/ntex-util/src/channel/mod.rs index b1102b91..a8652c6b 100644 --- a/ntex-util/src/channel/mod.rs +++ b/ntex-util/src/channel/mod.rs @@ -2,6 +2,7 @@ mod cell; pub mod condition; +pub mod mpsc; pub mod oneshot; pub mod pool; diff --git a/ntex/src/channel/mpsc.rs b/ntex-util/src/channel/mpsc.rs similarity index 100% rename from ntex/src/channel/mpsc.rs rename to ntex-util/src/channel/mpsc.rs diff --git a/ntex/src/channel/cell.rs b/ntex/src/channel/cell.rs deleted file mode 100644 index d9317c93..00000000 --- a/ntex/src/channel/cell.rs +++ /dev/null @@ -1,68 +0,0 @@ -//! Custom cell impl - -use std::cell::UnsafeCell; -use std::fmt; -use std::rc::{Rc, Weak}; - -pub(super) struct Cell { - inner: Rc>, -} - -impl Clone for Cell { - fn clone(&self) -> Self { - Self { - inner: self.inner.clone(), - } - } -} - -impl fmt::Debug for Cell { - fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - self.inner.fmt(f) - } -} - -impl Cell { - pub(super) fn new(inner: T) -> Self { - Self { - inner: Rc::new(UnsafeCell::new(inner)), - } - } - - pub(super) fn strong_count(&self) -> usize { - Rc::strong_count(&self.inner) - } - - pub(super) fn get_ref(&self) -> &T { - unsafe { &*self.inner.as_ref().get() } - } - - #[allow(clippy::mut_from_ref)] - pub(super) fn get_mut(&self) -> &mut T { - unsafe { &mut *self.inner.as_ref().get() } - } - - pub(super) fn downgrade(&self) -> WeakCell { - WeakCell { - inner: Rc::downgrade(&self.inner), - } - } -} - -pub(super) struct WeakCell { - inner: Weak>, -} - -impl Clone for WeakCell { - fn clone(&self) -> Self { - Self { - inner: self.inner.clone(), - } - } -} - -impl WeakCell { - pub(super) fn upgrade(&self) -> Option> { - self.inner.upgrade().map(|inner| Cell { inner }) - } -} diff --git a/ntex/src/channel/mod.rs b/ntex/src/channel/mod.rs deleted file mode 100644 index 0cdd95ea..00000000 --- a/ntex/src/channel/mod.rs +++ /dev/null @@ -1,5 +0,0 @@ -//! Communication primitives - -mod cell; -pub mod mpsc; -pub use ntex_util::channel::*; diff --git a/ntex/src/lib.rs b/ntex/src/lib.rs index 5c0e8897..ed04ef9f 100644 --- a/ntex/src/lib.rs +++ b/ntex/src/lib.rs @@ -32,7 +32,7 @@ pub use ntex_macros::{rt_main as main, rt_test as test}; #[cfg(test)] pub(crate) use ntex_macros::rt_test2 as rt_test; -pub mod channel; +//pub mod channel; pub mod connect; pub mod http; pub mod server; @@ -48,6 +48,7 @@ pub use self::service::{ pub use futures_core::stream::Stream; pub use futures_sink::Sink; +pub use ntex_util::channel; pub use ntex_util::task; pub mod codec {