https://crates.io/crates/dimsum is a simple multi-dimensional array library.
I happened to need multi-dim arrays for a different project and not seeing anything that served my specific purposes, wrote a simple library that may be useful to others. It allows arbitrary dimensions and explicit out-of-bounds error checking on gets and sets. It also chooses to use get and set functions in lieu of the Index trait.