Browse Source

fix: allow unused imports for freebsd

MartinFillon 1 year ago
parent
commit
87b36785f9
1 changed files with 1 additions and 0 deletions
  1. 1 0
      src/output/mod.rs

+ 1 - 0
src/output/mod.rs

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