Skip to content

Commit 919ce3f

Browse files
committed
rust: kernel: sort features
Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
1 parent 9d527c7 commit 919ce3f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

rust/kernel/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,20 +14,20 @@
1414
#![no_std]
1515
#![feature(allocator_api)]
1616
#![feature(associated_type_defaults)]
17+
#![feature(coerce_unsized)]
1718
#![feature(const_mut_refs)]
1819
#![feature(const_ptr_offset_from)]
1920
#![feature(const_refs_to_cell)]
2021
#![feature(const_trait_impl)]
2122
#![feature(core_ffi_c)]
2223
#![feature(c_size_t)]
24+
#![feature(dispatch_from_dyn)]
2325
#![feature(doc_cfg)]
26+
#![feature(duration_constants)]
2427
#![feature(generic_associated_types)]
2528
#![feature(ptr_metadata)]
2629
#![feature(receiver_trait)]
27-
#![feature(coerce_unsized)]
28-
#![feature(dispatch_from_dyn)]
2930
#![feature(unsize)]
30-
#![feature(duration_constants)]
3131

3232
// Ensure conditional compilation based on the kernel configuration works;
3333
// otherwise we may silently break things like initcall handling.

0 commit comments

Comments
 (0)