[package] name = "regroup" version = "0.4.3" edition = "2021" authors = ["Zachary S"] description = "A crate for regrouping arrays." license = "MIT OR Apache-2.0" keywords = ["transmute", "casting", "array"] categories = ["data-structures", "no-std"] [features] default = ["depth_3", "std"] depth_2 = [] depth_3 = ["depth_2"] depth_4 = ["depth_3"] depth_5 = ["depth_4"] depth_6 = ["depth_5"] depth_7 = ["depth_6"] alloc = [] rc = ["alloc"] arc = ["alloc"] std = ["alloc", "rc", "arc"] primitives = []