mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-08-26 00:00:16 +02:00
### Added - io: `poll_read_buf` util fn (#2972). - io: `poll_write_buf` util fn with vectored write support (#3156). Signed-off-by: Eliza Weisman <[email protected]>
1.4 KiB
1.4 KiB
0.5.1 (December 3, 2020)
Added
- io:
poll_read_bufutil fn (#2972). - io:
poll_write_bufutil fn with vectored write support (#3156).
0.5.0 (October 30, 2020)
Changed
- io: update
bytesto 0.6 (#3071).
0.4.0 (October 15, 2020)
Added
- sync:
CancellationTokenfor coordinating task cancellation (#2747). - rt:
TokioContextsets the Tokio runtime for the duration of a future (#2791) - io:
StreamReader/ReaderStreammap betweenAsyncReadvalues andStreamof bytes (#2788). - time:
DelayQueueto manage many delays (#2897).
0.3.1 (March 18, 2020)
Fixed
- Adjust minimum-supported Tokio version to v0.2.5 to account for an internal dependency on features in that version of Tokio. (#2326)
0.3.0 (March 4, 2020)
Changed
- Breaking Change: Change
Encodertrait to take a genericItemparameter, which allows codec writers to pass references intoFramedandFramedWritetypes. (#1746)
Added
Fixed
- Use advance over split_to when data is not needed. (#2198)
0.2.0 (November 26, 2019)
- Initial release