mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-08-16 00:00:12 +02:00
1.5 KiB
1.5 KiB
0.2.0-alpha.4 (August 29, 2019)
- Track tokio release.
0.2.0-alpha.3 (August 28, 2019)
Changed
- use
tracinginstead oflog
Added
- thread pool dedicated to blocking operations (#1495).
Executor::spawn_with_handle(#1492).
0.2.0-alpha.2 (August 17, 2019)
Fixed
- allow running executor from within blocking clause (#1433).
Changed
- Update
futuresdependency to 0.3.0-alpha.18.
Added
- Import
current-threadexecutor (#1447). - Import
threadpoolexecutor (#1152).
0.2.0-alpha.1 (August 8, 2019)
Changed
- Switch to
async,await, andstd::future.
Removed
Enter::make_permanentandEnter::on_exit(#???)
0.1.7 (March 22, 2019)
Added
TypedExecutorfor spawning futures of a specific type (#993).
0.1.6 (January 6, 2019)
- Implement
UnparkforArc<Unpark>(#802). - Switch to crossbeam's Parker / Unparker (#528).
0.1.5 (September 26, 2018)
- Implement
futures::ExecutorforDefaultExecutor(#563). - Add
Enter::block_on(future)(#646)
0.1.4 (August 23, 2018)
- Implement
std::error::Errorfor error types (#511).
0.1.3 (August 6, 2018)
- Implement
ExecutorforBox<E: Executor>(#420). - Improve
EnterErrordebug message (#410). - Implement
status,Send, andSyncforDefaultExecutor(#463, #472). - Fix race in
ParkThread(#507). - Handle recursive calls into
DefaultExecutor(#473).
0.1.2 (March 30, 2018)
- Implement
UnparkforBox<Unpark>.
0.1.1 (March 22, 2018)
- Optionally support futures 0.2.
0.1.0 (March 09, 2018)
- Initial release