cargo fix --edition errored when trying to determine the Drop trait status on geo-types::Point (no idea either). Not a problem in practice because no changes were required to the crate's code, but something seems to be wrong with the tool.
The standard GH actions test runner hasn't migrated to 1.56 yet, so the 2021 edition tag causes a test run failure. Not that there's a rush, I'm not clear as to whether Cargo < 1.56 is getting a backport to ignore the 2021 edition value, or whether it's designed not to build. If the latter, we'd have to wait at least two release cycles (til 1.58 becomes available, giving us three versions to test against) to switch to the new edition, and bump our MSRV to 1.56 – again, not sure whether there's any upside to doing that at the moment.
Just a low-stakes experiment. So far:
cargo fix --edition
errored when trying to determine theDrop
trait status ongeo-types::Point
(no idea either). Not a problem in practice because no changes were required to the crate's code, but something seems to be wrong with the tool.The standard GH actions test runner hasn't migrated to 1.56 yet, so the 2021 edition tag causes a test run failure. Not that there's a rush, I'm not clear as to whether Cargo < 1.56 is getting a backport to ignore the
2021
edition value, or whether it's designed not to build. If the latter, we'd have to wait at least two release cycles (til 1.58 becomes available, giving us three versions to test against) to switch to the new edition, and bump our MSRV to 1.56 – again, not sure whether there's any upside to doing that at the moment.