-
Notifications
You must be signed in to change notification settings - Fork 105
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
List of TODOs blocked on MSRV #67
Comments
joshlf
added a commit
that referenced
this issue
Oct 12, 2024
Now that our MSRV is 1.65, we can clean up some code. Makes progress on #67
joshlf
added a commit
that referenced
this issue
Oct 12, 2024
Now that our MSRV is 1.65, we can clean up some code. Makes progress on #67
github-merge-queue bot
pushed a commit
that referenced
this issue
Oct 12, 2024
Now that our MSRV is 1.65, we can clean up some code. Makes progress on #67
github-merge-queue bot
pushed a commit
that referenced
this issue
Oct 12, 2024
* Upgrade some code for MSRV 1.65 Now that our MSRV is 1.65, we can clean up some code. Makes progress on #67 * Upgrade versions of some dependencies Now that our MSRV is 1.65, it unlocks upgrading some dependencies' versions.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This issue is a repository of TODOs which are blocked on updating to a particular MSRV. In addition to those listed here, also see
TODO(#67)
comments in the source code.FromZeroes::new_box_slice_zeroed
, remove defensive programming which currently works around a bug inLayout::from_size_align
MaybeValid::as_slice
(pending in #279)const
once our MSRV is >= 1.64.0, whenslice_from_raw_parts
was stabilized asconst
#[allow(clippy::as_conversions)]
(pending in the current draft of #196) are spurious, and more recent versions of Clippy don't fire in those locations.unsafe
blocks in macros are marked with#[allow(clippy::undocumented_unsafe_blocks)]
; more recent versions of Clippy don't fire in those locations.const
: Stabilizeconst_maybe_uninit_zeroed
andconst_mem_zeroed
rust-lang/rust#116218ptr::from_ref
andptr::from_mut
&mut
references in a const context#[allow(...)]
with#[expect(...)]
where appropriateThe text was updated successfully, but these errors were encountered: