- Make
spawn_local
available only on unix and windows.
- Add
waker_fn
.
- Add the
no-std
category to the package.
- The crate is now marked with
#![no_std]
. - Add
Task::waker
andJoinHandle::waker
. - Add
Task::into_raw
andTask::from_raw
.
- Fix a use-after-free bug where the schedule function is dropped while running.
- If a task is dropped or cancelled outside the
run
method, it gets re-scheduled. - Add
spawn_local
constructor.
- Initial release