From 0e0edab57e719b44e16329426fe0baa6730951e7 Mon Sep 17 00:00:00 2001 From: Darius Date: Fri, 13 Oct 2023 23:00:12 -0400 Subject: [PATCH] chore: Remove unused imports --- extensions/warp-ipfs/src/store/identity.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/extensions/warp-ipfs/src/store/identity.rs b/extensions/warp-ipfs/src/store/identity.rs index 95eed0ab4..81f320e25 100644 --- a/extensions/warp-ipfs/src/store/identity.rs +++ b/extensions/warp-ipfs/src/store/identity.rs @@ -8,7 +8,7 @@ use crate::{ }; use chrono::Utc; -use futures::{channel::oneshot, stream::BoxStream, StreamExt, TryStreamExt}; +use futures::{channel::oneshot, StreamExt, TryStreamExt}; use ipfs::{Ipfs, IpfsPath, Keypair}; use libipld::Cid; use rust_ipfs as ipfs; @@ -16,7 +16,6 @@ use serde::{de::DeserializeOwned, Deserialize, Serialize}; use std::{ collections::{HashMap, HashSet}, path::PathBuf, - task::Poll, time::{Duration, Instant}, };