termios-rs
termios-rs copied to clipboard
Fix warning about deprecated mem::uninitialized()
The API to use for this is now mem::MaybeUninit()
.
You still have Rust 1.13 in the CI, this one is four years old at this point, is this something you want to keep or should I upgrade it to a more sensible baseline? MaybeUninit
exists since Rust 1.36, which could be a sensible new baseline.
Hi @linkmauve. This is something I want to do at some point. Supporting four year-old compilers is a feature. I'll just need to make a judgement call of when it's okay to bump the minimum supported version to 1.36. It's likely I could do that soon with a version bump after I have time to sit down and think about it. I'm dealing with a family emergency right now, so I'm just not in the frame of mind to think about it for a while.
Hi @dcuddeback. 1.36
is about three years old now, and I think you should be able to merge this now from this point of view. No serious Rust project is compiling on 1.36 now, since almost every other crate has a higher MSRV. If you still don't have time for personal reasons, that's fine, but I just wanted to remind you :).