home crate (bindgen dependency) requires MSRV 1.70
urschrei opened this issue · 4 comments
urschrei commented
Bindgen hasn't pinned its version of home
, and the latest version (https://crates.io/crates/home/0.5.9) has an MSRV of 1.70, which is causing our CI to fail as its minimum version is 1.65
michaelkirk commented
Any reason to not just bump MSRV to 1.70? It was released over 6 months ago.
urschrei commented
No I'm OK with that – we've never made any explicit guarantees about minimum Rust versions (have we?)
michaelkirk commented
I don't know that we've made any promises in this repo, but in geo we say:
"stable + 3", so we support 4 releases, or "about 6 months".
And I pretty much follow that in practice everywhere, though I don't proactively bump MSRV, and usually wait until something breaks.