Skip to content

Latest commit

 

History

History
79 lines (47 loc) · 2.82 KB

File metadata and controls

79 lines (47 loc) · 2.82 KB

What's Changed

  • actually fix compatibility with future rust versions by @WaffleLapkin in #3

Full Changelog: https://github.com/WhyAreAllTheseTaken/static-array/compare/v0.5.1...v0.5.2

What's Changed

  • fix compilation in future rust versions by @WaffleLapkin in #1

New Contributors

  • @WaffleLapkin made their first contribution in #1

Full Changelog: https://github.com/WhyAreAllTheseTaken/static-array/compare/v0.5.0...v0.5.1

[Changes][v0.5.1]

Added

  • Implemented DerefMut for HeapArray, HeapArray2D and HeapArray3D.

Full Changelog: https://github.com/Tomaso2468/static-array/compare/v0.4.0...v0.5.0

Changes

Added

  • Add a new feature flag rayon that enables support for creating arrays in parallel. This uses the rayon crate.
  • Add from_fn_par methods that create an array in parallel using rayon.

Full Changelog: https://github.com/Tomaso2468/static-array/compare/v0.3.0...v0.4.0

Changes

Added

  • Added the ability to index a subarray of a HeapArray2D or HeapArray3D.

Removed

  • Removed the ability to index a multidimensional array using a tuple index.

Changes

Major Changes

  • Removed the dependency on the std crate. The crate only requires alloc now.

Changes

The initial release of the static array crate.

Changes