Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch to using -Z direct-minimal-versions
So far we have relied on the unstable -Z minimal-versions switch to the cargo update command in order to downgrade all dependencies to their minimum supported versions to ensure that our own documented minimum supported Rust version is kosher. This option is unlikely to ever be stabilized in this form and a more promising candidate is what is now available with -Z direct-minimal-versions. This option only downgrades the direct dependencies of the crate, which should still be sufficient for our intents and purposes and is less likely to have runtime related performance problems. Switch to using it instead of -Z minimal-versions.
- Loading branch information