remove unused attributes. update changelog

This commit is contained in:
fakeshadow 2020-10-29 01:37:49 +08:00
parent 9564dac5c3
commit c6467304a1
2 changed files with 4 additions and 3 deletions

View File

@ -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

View File

@ -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;