Skip to content
This repository was archived by the owner on Jul 17, 2025. It is now read-only.

Commit 542884d

Browse files
committed
Bump rust version so we can build mdbook again.
1 parent be5f8a1 commit 542884d

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

kernel/src/arch/x86_64/irq.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ pub unsafe fn setup_early_idt() {
272272
///
273273
/// # See also
274274
/// Described in Intel SDM 3a, Figure 6-8. IA-32e Mode Stack Usage After Privilege Level Change
275-
#[repr(C, packed)]
275+
#[repr(C)]
276276
pub struct ExceptionArguments {
277277
_reserved: u64,
278278
vector: u64,

kernel/src/main.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
allocator_api,
2222
linkage,
2323
c_variadic,
24-
box_into_pin,
2524
drain_filter,
2625
new_uninit,
2726
get_mut_unchecked,
@@ -30,7 +29,6 @@
3029
nonnull_slice_from_raw_parts,
3130
cell_update,
3231
thread_local,
33-
let_chains,
3432
generic_associated_types,
3533
maybe_uninit_write_slice
3634
)]

rust-toolchain

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[toolchain]
2-
channel = "nightly-2022-04-01"
2+
channel = "nightly-2022-07-21"
33
components = [ "rustfmt", "rustc-dev", "rust-src", "cargo", "clippy" ]
44
profile = "default"

0 commit comments

Comments
 (0)