Now that min_const_generics has been stabilized in Rust 1.51.0, should we begin deprecating this crate? We can use the existing build.rs script to check the version number and only generate the deprecation on post-1.51.0 versions.
However, an alternative would be to port much of this crate's functionality to a new (simpler) array wrapper type that fully utilizes const generics, to work alongside and ease replacement of existing code.
Please feel free to submit your thoughts on the matter.
Now that
min_const_genericshas been stabilized in Rust 1.51.0, should we begin deprecating this crate? We can use the existingbuild.rsscript to check the version number and only generate the deprecation on post-1.51.0 versions.However, an alternative would be to port much of this crate's functionality to a new (simpler) array wrapper type that fully utilizes const generics, to work alongside and ease replacement of existing code.
Please feel free to submit your thoughts on the matter.