The format is based on Keep a Changelog.
Added
assignable!
macro that wraps aFuture
withAsync
so that the result can
be used with theAssign
variants ofstd::ops
traits.
Changed
- To
no_std
to make the crate platform-agnostic. - Use
futures-core
andfutures-util
as dependencies instead offutures
.
Deprecated
assignable
function which is now replaced withassignable!
macro. In cases
where the function is still needed,Async::assignable
can be used.