Migration to a new API is trivial, just fix build errors:
- remove
.unwrap()for the cases that were returningResult - implement
into_bytesfor your data types - instead of iterating tuples
(key, value)iterate overentryand access keys/values withentry.key()/entry.value()
That’s it!
Thank you for pointing this out, I updated the original post with instructions.