Releases: ChrisRega/lazy_async_promise
Releases · ChrisRega/lazy_async_promise
0.5.0
Merge pull request #12 from ChrisRega/0.5.0-dev
0.5.0 dev branch
0.4.0
- Add more flexible API to modify and take values
- Add DirectCacheAccess trait to unify accessing inner values of all promise data structures
- Add better bolt-on laziness of ImmediateValuePromise wrapped in std::option::Option
- Implement DirectCacheAccess for all promise data structures as well as blanket-implementing it for Option<ImmediateValuePromise>
0.3.1
- Finalize API macros for LazyVecPromise and LazyValuePromise
0.3.0
- Rework API to simplify usage
- Drop into_boxed trait in favor of ?-operator
- Add macros for lazy-api (only beginning, will be completed soon)
- See changelog for more details
0.2.0
Move type erase inside the LazyStructs removing the need for boxing and dyn traits in client code.
0.1.2
0.1.2:
- Added ImmediateValuePromise(new)
- Added error propagation testing