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
let rustc_version = parse_version(CURRENT_RUSTC_VERSION,true).unwrap();
631
616
632
617
// See https://github.com/rust-lang/rust/issues/64796#issuecomment-640851454 for details
// as a part of an unimplemented MSRV check https://github.com/rust-lang/rust/issues/65262.
373
373
374
374
let const_stab_rust_version = match since {
375
-
Since::Version(version) => RustcVersion::new(
376
-
u32::from(version.major),
377
-
u32::from(version.minor),
378
-
u32::from(version.patch),
379
-
),
380
-
Since::Current => {
381
-
// HACK(nilstrieb): CURRENT_RUSTC_VERSION can return versions like 1.66.0-dev.
382
-
// `rustc-semver` doesn't accept the `-dev` version number so we have to strip it off.
383
-
let short_version = CURRENT_RUSTC_VERSION.split('-').next().unwrap();
0 commit comments