Releases: dtolnay/async-trait
Releases · dtolnay/async-trait
0.1.18
- Improve span of errors when async method's future does not implement Send (#49, thanks @Marwes)
0.1.17
- Fix "cannot find type `AsyncTrait` in this scope" when a trait has both a where-clause mentioning
Self
and a no-self method with a default implementation (#44, thanks @olegnn)
0.1.16
- Fix "lifetimes do not match method in trait" when signature in trait contains
Self
but signature in impl does not (#42)
0.1.15
- Avoid generated code being disrupted by a user defined module or import named
core
(#41, thanks @Marwes)
0.1.14
- Support unsafe traits and unsafe trait impls (#39, thanks @Marwes)
0.1.13
- Support
Self
used as expr inside trait method body (#31)
0.1.11
- Remove
#![feature(async_await)]
from documentation now that the feature gate is gone in nightly
0.1.10
- Propagate mutability of
mut self
argument (#24, thanks @taiki-e)