Releases: dtolnay/async-trait
Releases · dtolnay/async-trait
0.1.63
- Do not require Sync on unused shared reference arguments (#232, #233)
- Make expansion of nested
_
and ..
patterns edition independent (#234, #235)
0.1.62
- Improve error message involving elided lifetimes (#229)
0.1.61
- Fix async function signatures that involve #[cfg(...)] attributes on parameters (#227, thanks @azriel91)
0.1.60
- Documentation improvements
0.1.59
- Support
self: Arc<Self>
async methods that have a default implementation provided by the trait (#210)
0.1.58
- Improve rust-analyzer "go to definition" on the method names of an async trait (#218)
0.1.57
- Add categories to crates.io metadata
0.1.56
- Fix build errors that involve
use parentheses to disambiguate: `(impl 'async_trait + Trait)`
(#204)
0.1.55
- Fix drop order of uncaptured arguments (
_
) when compiling in 2021 edition's closure capture rules (#199)
0.1.54
- Fix lifetime issue when using
impl Trait
in an async function argument type (#177)