Skip to content

Commit

Permalink
Sort and separate lint/feature attributes in profiler_builtins
Browse files Browse the repository at this point in the history
  • Loading branch information
Zalathar committed Nov 24, 2024
1 parent e6f1ca6 commit 7d2d11b
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions library/profiler_builtins/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
#![no_std]
// tidy-alphabetical-start
#![allow(internal_features)]
#![allow(unused_features)]
#![feature(profiler_runtime)]
#![feature(staged_api)]
// tidy-alphabetical-end

// Other attributes:
#![no_std]
#![profiler_runtime]
#![unstable(
feature = "profiler_runtime_lib",
reason = "internal implementation detail of rustc right now",
issue = "none"
)]
#![allow(unused_features)]
#![allow(internal_features)]
#![feature(staged_api)]

0 comments on commit 7d2d11b

Please sign in to comment.