Remove unused imports

This commit is contained in:
Jon Gjengset 2024-03-31 09:51:17 +02:00
parent ed433ec574
commit 32d560afdf
2 changed files with 0 additions and 4 deletions

View file

@ -2,8 +2,6 @@ use imap_proto::{MailboxDatum, Response, ResponseCode, StatusAttribute};
use lazy_static::lazy_static; use lazy_static::lazy_static;
use regex::Regex; use regex::Regex;
use std::collections::HashSet; use std::collections::HashSet;
use std::convert::TryFrom;
use std::iter::Extend;
use std::sync::mpsc; use std::sync::mpsc;
use super::error::{Error, ParseError, Result}; use super::error::{Error, ParseError, Result};

View file

@ -1,5 +1,3 @@
use std::convert::TryFrom;
use super::{Flag, Seq}; use super::{Flag, Seq};
/// re-exported from imap_proto; /// re-exported from imap_proto;