Releases: djc/tokio-imap
Releases · djc/tokio-imap
imap-proto 0.16.6
What's Changed
- Annotate transmute() to appease clippy 1.79 by @djc in #172
- tokio-imap: bump MSRV (for cc) by @djc in #173
- tokio-imap: bump MSRV to 1.70 (for tokio 1.39) by @djc in #174
- removed check for null characters in literal function by @AdSkipper1337 in #176
- Workaround for surgemail bug with spaces at the end of flag list by @cry-inc in #179
- Add support for gmail x-gm-thrid extension by @kiawin in #177
- imap-proto: make quoted tests more precise by @djc in #180
imap-proto 0.13.0
imap-proto 0.12.0
imap-proto 0.11.0
This release contains numerous internal improvements and some hopefully minor API changes.
imap-proto 0.10.2
tokio-imap 0.5.0
- Upgrade to tokio 0.2 final release
- Remove some unused dependencies
- Upgrade to latest imap-proto
imap-proto 0.10.0
This release contains one incompatible change: all fields of the Address type as well as some fields of the Envelope type are now &[u8] instead of &str. It turns out that parsing these as UTF-8 was, unfortunately, too restrictive for parsing messages in the wild. Thanks to @link2xt for investigating and fixing this.
- Allow arbitrary bytes for some string fields (#63, thanks to @link2xt)
- Allow invalid continuation responses as seen from Yandex (#68, thanks to @dignifiedquire)
imap-proto 0.9.1
- Added support for the RFC 5464 METADATA extension (#59, thanks to @Sergey-Kitov)
- Fixed a regression in number parsing (introduced in 0.9.0)
- Added a
Cloneimpl forRequest
tokio-imap 0.5.0-alpha.1
- Initial support for async/await
- Use rustls as the underlying TLS implementation
- Simplify the
ImapTransportabstraction
imap-proto 0.9.0
- Corrected parser to allow non-uppercase keywords (thanks to @avitex and @link2xt)
- Upgraded to nom 5 (thanks to @marcusklaas)