We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11c98f6 commit e4fffe8Copy full SHA for e4fffe8
crates/std_detect/src/lib.rs
@@ -24,6 +24,11 @@
24
#[macro_use]
25
extern crate std;
26
27
+// rust-lang/rust#83888: removing `extern crate` gives an error that `vec_spare>
28
+#[cfg_attr(feature = "std_detect_file_io", allow(unused_extern_crates))]
29
+#[cfg(feature = "std_detect_file_io")]
30
+extern crate alloc;
31
+
32
#[doc(hidden)]
33
#[unstable(feature = "stdsimd", issue = "27731")]
34
pub mod detect;
0 commit comments