Added
- Add `optionally_get_with` method to `sync` and `future` caches
([187][gh-pull-0187], by [LMJW][gh-LMJW]):
- It is similar to `try_get_with` but takes an init closure/future returning an
`Option<V>` instead of `Result<V, E>`.
- Add `by_ref` version of API for `get_with`, `optionally_get_with`, and
`try_get_with` of `sync` and `future` caches ([190][gh-pull-0190], by
[LMJW][gh-LMJW]):
- They are similar to the non-`by_ref` versions but take a reference of the key
instead of an owned key. If the key does not exist in the cache, the key will
be cloned to create new entry in the cache.
Changed
- Change the CI to run Linux AArch64 tests on real hardware using Cirrus CI.
([180][gh-pull-0180], by [ClSlaid][gh-ClSlaid])
Fixed
- Fix a typo in the documentation. ([189][gh-pull-0189], by [Swatinem][gh-Swatinem])