Explorar el Código

Fix attrs

Don't extern crate std on non-test profiles
restioson hace 6 años
padre
commit
bac1280ce3
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2 1
      src/lib.rs

+ 2 - 1
src/lib.rs

@@ -4,7 +4,8 @@
 #![feature(exclusive_range_pattern, range_contains)]
 #![feature(exhaustive_integer_patterns)]
 
-#[macro_use]
+#[cfg_attr(test, macro_use)]
+#[cfg(test)]
 extern crate std;
 
 #[macro_use]