Skip to content

Commit 038b621

Browse files
fix: 1.95.0 nightly (#28)
- Rename `bigint_helper_methods` feature gate to `widening_mul` in `kernel/src/lib.rs` [rust-lang/rust#152018](rust-lang/rust#152018) - Remove stabilized `atomic_try_update` feature gate from `common/src/lib.rs` [rust-lang/rust#148590](rust-lang/rust#148590) --------- Co-authored-by: Yuhan Deng <yhdeng@stanford.edu>
1 parent e2b46f7 commit 038b621

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

common/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
#![feature(slice_from_ptr_range)]
1111
#![feature(sync_unsafe_cell)]
1212
#![feature(try_trait_v2)]
13-
#![feature(atomic_try_update)]
1413
#![feature(test)]
1514
#![feature(unboxed_closures)]
1615
#![cfg_attr(feature = "std", feature(thread_id_value))]

kernel/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#![no_main]
22
#![no_std]
33
#![feature(allocator_api)]
4-
#![feature(bigint_helper_methods)]
4+
#![feature(widening_mul)]
55
#![feature(box_as_ptr)]
66
#![feature(box_into_inner)]
77
#![feature(maybe_uninit_array_assume_init)]

0 commit comments

Comments
 (0)