This release fixes a regression in tokio::sync
and a bug in tokio::fs::copy
. It also
adds a new APIs to tokio::time
and tokio::io
.
Fixes
- sync: fix a regression where
Mutex
, Semaphore
, and RwLock
futures no
longer implement Sync
(#2375)
- fs: fix
fs::copy
not copying file permissions (#2354)
Added
- time: added
deadline
method to delay_queue::Expired
(#2300)
- io: added
StreamReader
(#2052)