vcombey / fallible_collections

impl fallible collections in rust, quite as describe in RFC 2116
Apache License 2.0
31 stars 14 forks source link

Add support for stable rust #3

Closed baumanj closed 4 years ago

baumanj commented 4 years ago

Resolves https://github.com/vcombey/fallible_collections/issues/1

Unstable features now require the unstable feature to be enabled. Most functionality is preserved, with the exception of the btree module and the TryClone trait.

A dependency on the hashbrown crate is added to use its CollectionAllocErr. It will be used more extensively when support for types requiring fallible allocation is added.

See https://github.com/vcombey/fallible_collections/issues/2.