Announcing typed-arena version 1.4.0 -- now with #![no_std] support!

typed_arena 1.4.0

An implementation of the arena: a fast but limited type of allocator.

Change Log

Released 2018/06/21.

Added

  • Added a new, on-by-default feature named "std". Disabling this feature allows
    the crate to be used in #![no_std] environments. #15 #12
2 Likes

Quick question: is there a crate which works like typed_arena, but:

  • gives away only shared references
  • in exchange, allows to convert an index into a reference

In other words, I am looking for a ChunkList based Vec analogue, who’s push method needs only a shared reference. That should be sound, right?

I'm not aware of any such crate.