How do we keep track of changes waiting on a higher MSRV? #1782
Unanswered
EliahKagan
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Some changes cannot be made now but are planned for when the minimum supported Rust version is high enough to support them (either to make a language or library feature available, or for it to be stabilized). This includes at least the following:
once_cell
#1518There may be others such closed PRs. There are also various MSRV-related TODO comments, such as:
gitoxide/gix-fs/src/lib.rs
Lines 90 to 95 in 8df0db2
gitoxide/gix-merge/src/blob/builtin_driver/text/mod.rs
Lines 106 to 108 in 8df0db2
How are, or should, such plans be tracked? Comments are one way of tracking them, of course, but there does not always seem to be such a comment, and sometimes a change would touch several places in the code (such as using
LazyLock
) such that it is no clear ideal place to have a comment about it.Beta Was this translation helpful? Give feedback.
All reactions