ソースを参照

fix(netbsd): enable the rule only for NetBSD.

Santhosh Raju 1 年間 前
コミット
17733e9aee
1 ファイル変更1 行追加1 行削除
  1. 1 1
      src/output/mod.rs

+ 1 - 1
src/output/mod.rs

@@ -1,4 +1,4 @@
-#[allow(unused_imports)]
+#[cfg_attr(target_os = "netbsd", allow(unused_imports))]
 pub use self::cell::{DisplayWidth, TextCell, TextCellContents};
 pub use self::escape::escape;