You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Trixie released with rustc 1.85, so I expect a lot of crates will be increasing their MSRV in the next few weeks. I'd like to upgrade only as needed, rough list of what might be nice to have:
Baseline: 1.63
1.64: core::ffi::c_* (definitely need this)
1.64: workspace-level lints (meh)
1.65: cast_mut (this would be nice)
Baseline: 1.65
1.67: varargs for non-C extern ABIs (no known applications)
1.69: derive on packed structs that don't implement Copy (not overly useful for us, everything is copy)
1.75: byte_add (this would be nice)
1.75: const_maybe_uninit_zeroed (this would be nice)
1.77: offset_of (just lets us remove a polyfill)
1.77: C string literals (nothing we can't work around, not sure we even use this now)
Trixie released with rustc 1.85, so I expect a lot of crates will be increasing their MSRV in the next few weeks. I'd like to upgrade only as needed, rough list of what might be nice to have:
Baseline: 1.631.64:core::ffi::c_*(definitely need this)1.64: workspace-level lints (meh)1.65:cast_mut(this would be nice)Baseline: 1.65
deriveon packed structs that don't implementCopy(not overly useful for us, everything is copy)byte_add(this would be nice)const_maybe_uninit_zeroed(this would be nice)offset_of(just lets us remove a polyfill)cfg(target_abi = "...")Add support foraarch64-unknown-linux-pauthtesttarget #5065 (comment)size_of,align_ofin prelude (nice to have but we have our own prelude)#[expect(...)](want this, but it's not pressing)unsafe externblocks (neutral)&raw(few small applications,addr_of!works fine)offset_of!(no uses)ptr::fn_addr_eq(we don't really need this as it is just for trait impls)&raw [mut|const]to union fields is now safe