diff options
Diffstat (limited to 'src/writer.rs')
-rw-r--r-- | src/writer.rs | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/src/writer.rs b/src/writer.rs index f622bcf..e82d674 100644 --- a/src/writer.rs +++ b/src/writer.rs @@ -1,13 +1,6 @@ -use std::{ - collections::{HashSet, VecDeque}, - pin::pin, - str::FromStr, - task::Poll, -}; +use std::collections::HashSet; use async_recursion::async_recursion; -use circular::Buffer; -use futures::{Future, FutureExt, Sink, SinkExt}; use tokio::io::{AsyncWrite, AsyncWriteExt}; use crate::{ @@ -15,7 +8,7 @@ use crate::{ element::{escape_str, Content, Element, IntoContent, IntoElement, Name, NamespaceDeclaration}, endable::Endable, error::Error, - xml::{self, composers::Composer, parsers_complete::Parser, ETag, XMLDecl}, + xml::{self, composers::Composer, parsers_complete::Parser}, Result, XMLNS_NS, XML_NS, }; |