mirror of https://github.com/fafhrd91/actix-net
remove unused attributes. update changelog
This commit is contained in:
parent
9564dac5c3
commit
c6467304a1
|
@ -8,7 +8,9 @@
|
|||
|
||||
### Changed
|
||||
|
||||
* Deprecate `Arbiter::is_running`and `Arbiter::local_join`. `Arbiter::spawn` would panic when `System` is not in scope. [#207]
|
||||
* Remove `'static` lifetime requirement for `Runtime::block_on` and `SystemRunner::block_on`. These functions would
|
||||
accept a `&Self` when calling. Remove `'static` lifetime requirement for `System::run`. Deprecate `Arbiter::is_running`
|
||||
and `Arbiter::local_join`. `Arbiter::spawn` would panic when `System` is not in scope. [#207]
|
||||
|
||||
### Fixed
|
||||
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
//! A runtime implementation that runs everything on the current thread.
|
||||
#![deny(rust_2018_idioms, warnings)]
|
||||
#![allow(clippy::type_complexity)]
|
||||
#![forbid(unsafe_code)]
|
||||
|
||||
use std::future::Future;
|
||||
|
||||
|
|
Loading…
Reference in New Issue