📢 stable-structures v0.7.0 Released — Major BTreeMap Speedups and Breaking API Changes

Migration to a new API is trivial, just fix build errors:

  • remove .unwrap() for the cases that were returning Result
  • implement into_bytes for your data types
  • instead of iterating tuples (key, value) iterate over entry and access keys/values with entry.key()/entry.value()

That’s it!

Thank you for pointing this out, I updated the original post with instructions.

2 Likes