diff --git a/src/alignment.rs b/src/alignment.rs index 0b906cec..81db4165 100644 --- a/src/alignment.rs +++ b/src/alignment.rs @@ -1,4 +1,6 @@ -use crate::{CellOption, Table}; +use crate::CellOption; +#[allow(unused)] +use crate::Table; use papergrid::{AlignmentHorizontal, AlignmentVertical, Entity, Grid, Settings}; /// Alignment represent a horizontal and vertical alignemt setting for a [Table]. diff --git a/src/disable.rs b/src/disable.rs index 34a86936..ef06e23c 100644 --- a/src/disable.rs +++ b/src/disable.rs @@ -1,4 +1,6 @@ -use crate::{bounds_to_usize, Table, TableOption}; +#[allow(unused)] +use crate::Table; +use crate::{bounds_to_usize, TableOption}; use papergrid::Grid; use std::ops::RangeBounds; diff --git a/src/object.rs b/src/object.rs index bb3dfb52..edc4de63 100644 --- a/src/object.rs +++ b/src/object.rs @@ -1,10 +1,10 @@ +#[allow(unused)] +use papergrid::Grid; use std::{ collections::BTreeSet, ops::{Bound, RangeBounds}, }; -use papergrid::Grid; - /// Object helps to locate a nessesary part of a [Grid]. pub trait Object: Sized { /// Cells returns a set of cordinates of cells diff --git a/src/panel.rs b/src/panel.rs index 9f6879df..13b6f0c4 100644 --- a/src/panel.rs +++ b/src/panel.rs @@ -1,4 +1,6 @@ -use crate::{Disable, TableOption}; +#[allow(unused)] +use crate::Disable; +use crate::TableOption; use papergrid::{Entity, Grid, Settings}; /// Panel allows to add a custom panel to table.