diff --git a/actix-codec/CHANGES.md b/actix-codec/CHANGES.md index 2c148993..f6102cbf 100644 --- a/actix-codec/CHANGES.md +++ b/actix-codec/CHANGES.md @@ -1,9 +1,6 @@ # Changes ## Unreleased - 2021-xx-xx -* Move dispatcher from actix-utils. [#301] - -[#301]: https://github.com/actix/actix-net/pull/301 ## 0.4.0-beta.1 - 2020-12-28 diff --git a/actix-utils/CHANGES.md b/actix-utils/CHANGES.md index 64c38a2a..c911a211 100644 --- a/actix-utils/CHANGES.md +++ b/actix-utils/CHANGES.md @@ -4,15 +4,9 @@ * Moved `mpsc` to own crate `local-channel`. [#301] * Moved `task::LocalWaker` to own crate `local-waker`. [#301] * Remove `timeout` module. [#301] +* Remove `dispatcher` module. [#301] * Expose `future` mod with `ready` and `poll_fn` helpers. [#301] -* `SendError` inner field is now public. [#286] -* Rename `Dispatcher::{get_sink => tx}`. [#286] -* Rename `Dispatcher::{get_ref => service}`. [#286] -* Rename `Dispatcher::{get_mut => service_mut}`. [#286] -* Rename `Dispatcher::{get_framed => framed}`. [#286] -* Rename `Dispatcher::{get_framed_mut => framed_mut}`. [#286] -[#286]: https://github.com/actix/actix-net/pull/286 [#301]: https://github.com/actix/actix-net/pull/301 diff --git a/actix-utils/src/counter.rs b/actix-utils/src/counter.rs index 383ac11d..91959e63 100644 --- a/actix-utils/src/counter.rs +++ b/actix-utils/src/counter.rs @@ -1,6 +1,6 @@ //! Task-notifying counter. -use alloc::rc::Rc; +use std::rc::Rc; use core::{cell::Cell, task}; use local_waker::LocalWaker; diff --git a/actix-utils/src/lib.rs b/actix-utils/src/lib.rs index 06f18032..d0e057ff 100644 --- a/actix-utils/src/lib.rs +++ b/actix-utils/src/lib.rs @@ -1,12 +1,9 @@ //! Various network related services and utilities for the Actix ecosystem. -#![no_std] #![deny(rust_2018_idioms, nonstandard_style)] #![allow(clippy::type_complexity)] #![doc(html_logo_url = "https://actix.rs/img/logo.png")] #![doc(html_favicon_url = "https://actix.rs/favicon.ico")] -extern crate alloc; - pub mod counter; pub mod future;