mirror of https://github.com/fafhrd91/actix-net
fixup changelogs
This commit is contained in:
parent
f4d2958563
commit
b48165b490
|
@ -1,9 +1,6 @@
|
||||||
# Changes
|
# Changes
|
||||||
|
|
||||||
## Unreleased - 2021-xx-xx
|
## 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
|
## 0.4.0-beta.1 - 2020-12-28
|
||||||
|
|
|
@ -4,15 +4,9 @@
|
||||||
* Moved `mpsc` to own crate `local-channel`. [#301]
|
* Moved `mpsc` to own crate `local-channel`. [#301]
|
||||||
* Moved `task::LocalWaker` to own crate `local-waker`. [#301]
|
* Moved `task::LocalWaker` to own crate `local-waker`. [#301]
|
||||||
* Remove `timeout` module. [#301]
|
* Remove `timeout` module. [#301]
|
||||||
|
* Remove `dispatcher` module. [#301]
|
||||||
* Expose `future` mod with `ready` and `poll_fn` helpers. [#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
|
[#301]: https://github.com/actix/actix-net/pull/301
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
//! Task-notifying counter.
|
//! Task-notifying counter.
|
||||||
|
|
||||||
use alloc::rc::Rc;
|
use std::rc::Rc;
|
||||||
use core::{cell::Cell, task};
|
use core::{cell::Cell, task};
|
||||||
|
|
||||||
use local_waker::LocalWaker;
|
use local_waker::LocalWaker;
|
||||||
|
|
|
@ -1,12 +1,9 @@
|
||||||
//! Various network related services and utilities for the Actix ecosystem.
|
//! Various network related services and utilities for the Actix ecosystem.
|
||||||
|
|
||||||
#![no_std]
|
|
||||||
#![deny(rust_2018_idioms, nonstandard_style)]
|
#![deny(rust_2018_idioms, nonstandard_style)]
|
||||||
#![allow(clippy::type_complexity)]
|
#![allow(clippy::type_complexity)]
|
||||||
#![doc(html_logo_url = "https://actix.rs/img/logo.png")]
|
#![doc(html_logo_url = "https://actix.rs/img/logo.png")]
|
||||||
#![doc(html_favicon_url = "https://actix.rs/favicon.ico")]
|
#![doc(html_favicon_url = "https://actix.rs/favicon.ico")]
|
||||||
|
|
||||||
extern crate alloc;
|
|
||||||
|
|
||||||
pub mod counter;
|
pub mod counter;
|
||||||
pub mod future;
|
pub mod future;
|
||||||
|
|
Loading…
Reference in New Issue