Releases: dtolnay/async-trait
Releases · dtolnay/async-trait
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)
0.1.8
- Avoid used_underscore_binding lint in generated code (#21)
0.1.7
- Accept
#[async_trait(?Send)]
to opt out of Send-bounded futures (#10, #14)
- Fix use of
self
inside of nested macro invocation (#17)
0.1.6
- Fix a "lifetime does not appear in bounds" error on certain async signatures (#15)