We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
profiler_builtins
1 parent 44f83ae commit 0ac376eCopy full SHA for 0ac376e
profiler_builtins/src/lib.rs
@@ -1,11 +1,15 @@
1
-#![no_std]
+// tidy-alphabetical-start
2
+#![allow(internal_features)]
3
+#![allow(unused_features)]
4
#![feature(profiler_runtime)]
5
+#![feature(staged_api)]
6
+// tidy-alphabetical-end
7
+
8
+// Other attributes:
9
+#![no_std]
10
#![profiler_runtime]
11
#![unstable(
12
feature = "profiler_runtime_lib",
13
reason = "internal implementation detail of rustc right now",
14
issue = "none"
15
)]
-#![allow(unused_features)]
-#![allow(internal_features)]
-#![feature(staged_api)]
0 commit comments