Skip to content

Commit 10e6c6d

Browse files
committed
fix(stacks-common): Remove remaining unused imports
1 parent 8d33529 commit 10e6c6d

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

stacks-common/src/types/chainstate.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use std::fmt::{self, Display};
1+
use std::fmt;
22
use std::io::{Read, Write};
33
use std::str::FromStr;
44

stacks-common/src/types/mod.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
// You should have received a copy of the GNU General Public License
1515
// along with this program. If not, see <http://www.gnu.org/licenses/>.
1616

17-
use std::cell::LazyCell;
1817
use std::cmp::Ordering;
1918
use std::fmt;
2019
use std::ops::{Deref, DerefMut, Index, IndexMut};

stacks-common/src/util/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@ pub mod vrf;
3030

3131
use std::fs::File;
3232
use std::io::{BufReader, BufWriter, Write};
33-
use std::path::{Path, PathBuf};
33+
use std::path::Path;
3434
use std::time::{SystemTime, UNIX_EPOCH};
3535
use std::{error, fmt, thread, time};
3636

3737
/// Given a relative path inside the Cargo workspace, return the absolute path
3838
#[cfg(any(test, feature = "testing"))]
39-
pub fn cargo_workspace<P>(relative_path: P) -> PathBuf
39+
pub fn cargo_workspace<P>(relative_path: P) -> std::path::PathBuf
4040
where
4141
P: AsRef<Path>,
4242
{

0 commit comments

Comments
 (0)