All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
- Nightly utilites are now gated behind an
unstable_nightly
feature.
- The
AsyncGenerator
trait is now object-safe.
- Async generators now implement
Sync
when the interior future implementsSend
.
- Generators should now be able to implement
Send
.
GeneratorTryStream
wrapper type to more easily create streams of results from a generator.
This is the initial release!
- Generator macros.
Generator
andAsyncGenerator
traits.- Various wrapper types for using generators as iterators or streams.