rustonaut / vec1

Rust `Vec<T>` wrapper that gurantees to contain at least 1 element
Apache License 2.0
88 stars 15 forks source link

Remove feature flag around `TryFrom`, now that it's landed in Rust 1.34.0 #9

Closed ErichDonGubler closed 5 years ago

ErichDonGubler commented 5 years ago

Since no MSRV has been specified, discussion about how to handle it potentially changing here might be well. That might be a reason to reject this PR and simply rename the flag -- your call!

rustonaut commented 5 years ago

I don't think vec1 should have braking changes if possible.

I generally normally want to track something like the second or third newest rust version. (Through a patch version change should still never change any requirements for the rust version).

So the idea would be to wait until 1.36 is stable and then release a vec1 v1.5.0. Through I will think about it a bit more and then also properly document it.